summaryrefslogtreecommitdiff
path: root/wizards
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2005-05-20 14:42:00 +0000
committerRüdiger Timm <rt@openoffice.org>2005-05-20 14:42:00 +0000
commit1b06a560c4f92665cb79d0f5d2c5e3db049291c8 (patch)
treec64d960f2b1c1cb189d4ef6b84edb800b94c4597 /wizards
parent24a462c067645e4d36451b3cd5a82f5a1b89b551 (diff)
INTEGRATION: CWS letterwizardlang (1.7.26); FILE MERGED
2005/05/20 15:06:54 bc 1.7.26.1: ##removetoNirwana modified Issue number: Submitted by: Reviewed by:
Diffstat (limited to 'wizards')
-rw-r--r--wizards/com/sun/star/wizards/document/FormHandler.java20
1 files changed, 11 insertions, 9 deletions
diff --git a/wizards/com/sun/star/wizards/document/FormHandler.java b/wizards/com/sun/star/wizards/document/FormHandler.java
index 3185b9e46762..96225d0e1e04 100644
--- a/wizards/com/sun/star/wizards/document/FormHandler.java
+++ b/wizards/com/sun/star/wizards/document/FormHandler.java
@@ -2,9 +2,9 @@
*
* $RCSfile: FormHandler.java,v $
*
-* $Revision: 1.7 $
+* $Revision: 1.8 $
*
-* last change: $Author: kz $ $Date: 2005-03-18 16:16:43 $
+* last change: $Author: rt $ $Date: 2005-05-20 15:42:00 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -415,13 +415,15 @@ public class FormHandler {
if (ControlList != null){
for (int i = 0; i < ControlList.length; i++){
if (ControlList[i] != null)
- try {
- String sControlName = (String) ControlList[i].xPropertySet.getPropertyValue("Name");
- if (xNamedForm.hasByName(sControlName))
- xNamedForm.removeByName(sControlName);
- } catch (Exception e) {
- e.printStackTrace(System.out);
- }
+// try {
+ ControlList[i].setPosition(new Point(this.iXNirwanaPos, this.iYNirwanaPos));
+// String sControlName = (String) ControlList[i].xPropertySet.getPropertyValue("Name");
+//
+// if (_xNamedForm.hasByName(sControlName))
+// _xNamedForm.removeByName(sControlName);
+// } catch (Exception e) {
+// e.printStackTrace(System.out);
+// }
}
}}