summaryrefslogtreecommitdiff
path: root/wizards/com/sun
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2006-07-06 13:20:53 +0000
committerKurt Zenker <kz@openoffice.org>2006-07-06 13:20:53 +0000
commit1bc051918128c52020630642ab27e2c16b3525b3 (patch)
tree6cf3d26cee8c6c1b2ad0d0c60c61e6fee66b5cad /wizards/com/sun
parent2342a877ac9fa9d0a492a47768e48327e91c3d48 (diff)
INTEGRATION: CWS dbwizardpp4 (1.9.28); FILE MERGED
2006/06/26 08:11:46 bc 1.9.28.1: #i45673#fieldcolumn can now also handle '.' in their name
Diffstat (limited to 'wizards/com/sun')
-rw-r--r--wizards/com/sun/star/wizards/form/UIControlArranger.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/wizards/com/sun/star/wizards/form/UIControlArranger.java b/wizards/com/sun/star/wizards/form/UIControlArranger.java
index 6994c0159898..3d44760d7caf 100644
--- a/wizards/com/sun/star/wizards/form/UIControlArranger.java
+++ b/wizards/com/sun/star/wizards/form/UIControlArranger.java
@@ -4,9 +4,9 @@
*
* $RCSfile: UIControlArranger.java,v $
*
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: vg $ $Date: 2006-04-07 12:44:35 $
+ * last change: $Author: kz $ $Date: 2006-07-06 14:20:53 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -57,7 +57,7 @@ import javax.swing.event.ListDataListener;
public class UIControlArranger {
- WizardDialog CurUnoDialog;
+ FormWizard CurUnoDialog;
FormDocument curFormDocument;
short curtabindex;
XRadioButton optAlignLeft;
@@ -73,7 +73,7 @@ public class UIControlArranger {
final String SOALIGNMETHOD = "alignLabelControls";
- public UIControlArranger(WizardDialog _CurUnoDialog, FormDocument _curFormDocument) throws NoValidPathException {
+ public UIControlArranger(FormWizard _CurUnoDialog, FormDocument _curFormDocument) throws NoValidPathException {
this.CurUnoDialog = _CurUnoDialog;
this.curFormDocument = _curFormDocument;
curtabindex = (short) (FormWizard.SOCONTROLPAGE * 100);
@@ -233,7 +233,7 @@ public class UIControlArranger {
else
bEnableAlignControlGroup = ((oImageList[0].ilLayouts.getSelected()+1) == FormWizard.SOCOLUMNARLEFT);
enableAlignControlGroup(bEnableAlignControlGroup);
- ((FormDocument.ControlForm) curFormDocument.oControlForms.get(formindex)).initialize(ilLayouts.getSelected() + 1);
+ ((FormDocument.ControlForm) curFormDocument.oControlForms.get(formindex)).initialize(ilLayouts.getSelected() + 1, CurUnoDialog.getBorderType());
}
} catch (RuntimeException e) {
e.printStackTrace();