aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas L. Delmelle <adelmelle@apache.org>2011-01-14 22:56:21 +0000
committerAndreas L. Delmelle <adelmelle@apache.org>2011-01-14 22:56:21 +0000
commita7b8c7f2c9530d2e14a5499099c40155b22c6f8b (patch)
treea9a32718560b1523aa48f4260389d91d86255ebe
parent1eaae07e7db29a870d7dd037083a3e0fc9f7dc8c (diff)
downloadxmlgraphics-fop-a7b8c7f2c9530d2e14a5499099c40155b22c6f8b.tar.gz
xmlgraphics-fop-a7b8c7f2c9530d2e14a5499099c40155b22c6f8b.zip
Minor nit: eliminate stray hungarian...
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1059195 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--src/java/org/apache/fop/area/inline/InlineParent.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/java/org/apache/fop/area/inline/InlineParent.java b/src/java/org/apache/fop/area/inline/InlineParent.java
index 86c9141e6..db8f2f056 100644
--- a/src/java/org/apache/fop/area/inline/InlineParent.java
+++ b/src/java/org/apache/fop/area/inline/InlineParent.java
@@ -85,18 +85,18 @@ public class InlineParent extends InlineArea {
@Override
public boolean applyVariationFactor(double variationFactor,
int lineStretch, int lineShrink) {
- boolean bUnresolvedAreasPresent = false;
+ boolean hasUnresolvedAreas = false;
int cumulativeIPD = 0;
// recursively apply variation factor to descendant areas
for (int i = 0, len = inlines.size(); i < len; i++) {
InlineArea inline = inlines.get(i);
- bUnresolvedAreasPresent |= inline.applyVariationFactor(
+ hasUnresolvedAreas |= inline.applyVariationFactor(
variationFactor, lineStretch, lineShrink);
cumulativeIPD += inline.getIPD(); //Update this area's IPD based on changes to children
}
setIPD(cumulativeIPD);
- return bUnresolvedAreasPresent;
+ return hasUnresolvedAreas;
}
}