Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jsf/plugins/org.eclipse.jst.pagedesigner/src/org/eclipse/jst/pagedesigner/css2/layout/CSSInlineFlowLayout.java')
-rw-r--r--jsf/plugins/org.eclipse.jst.pagedesigner/src/org/eclipse/jst/pagedesigner/css2/layout/CSSInlineFlowLayout.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/jsf/plugins/org.eclipse.jst.pagedesigner/src/org/eclipse/jst/pagedesigner/css2/layout/CSSInlineFlowLayout.java b/jsf/plugins/org.eclipse.jst.pagedesigner/src/org/eclipse/jst/pagedesigner/css2/layout/CSSInlineFlowLayout.java
index 97f4571c0..39ddf89b4 100644
--- a/jsf/plugins/org.eclipse.jst.pagedesigner/src/org/eclipse/jst/pagedesigner/css2/layout/CSSInlineFlowLayout.java
+++ b/jsf/plugins/org.eclipse.jst.pagedesigner/src/org/eclipse/jst/pagedesigner/css2/layout/CSSInlineFlowLayout.java
@@ -142,7 +142,7 @@ public class CSSInlineFlowLayout extends CSSLayout {
}
if (_currentLine != null /* && _currentLine.isOccupied() */) {
- _currentLine._marginInsets.right = getCSSStyle().getMarginInsets().right;
+ _currentLine.getMarginInsets().right = getCSSStyle().getMarginInsets().right;
getFlowContext().addToCurrentLine(_currentLine);
}
@@ -192,6 +192,7 @@ public class CSSInlineFlowLayout extends CSSLayout {
*
* @param line
* The LineBox to initialize.
+ * @param firstline
*/
protected void setupLine(LineBox line, boolean firstline) {
LineBox parent = getFlowContext().getCurrentLine();

Back to the top