summaryrefslogtreecommitdiff
path: root/wizards/com
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2004-11-27 08:09:20 +0000
committerKurt Zenker <kz@openoffice.org>2004-11-27 08:09:20 +0000
commit738e537ba1aef97660ce246143018a75bcfc9f9d (patch)
treed1d8eeccb9c230344c10e9bbb67a7be239cb5233 /wizards/com
parent4a8bc6f0fc43e806a9253598c6c6c9df856dd031 (diff)
INTEGRATION: CWS qwizardsbf1 (1.3.2); FILE MERGED
2004/11/22 14:02:58 bc 1.3.2.3: #i30234# path to share/config referenced Issue number: Submitted by: Reviewed by: 2004/09/30 11:40:19 rpiterman 1.3.2.2: changes due to changes in OfficeDocument.createNewFrame method 2004/09/17 15:50:28 rpiterman 1.3.2.1: removed a console output Issue number: 33452
Diffstat (limited to 'wizards/com')
-rw-r--r--wizards/com/sun/star/wizards/web/WWD_Events.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/wizards/com/sun/star/wizards/web/WWD_Events.java b/wizards/com/sun/star/wizards/web/WWD_Events.java
index c6660585910e..efbb9b22e274 100644
--- a/wizards/com/sun/star/wizards/web/WWD_Events.java
+++ b/wizards/com/sun/star/wizards/web/WWD_Events.java
@@ -2,9 +2,9 @@
*
* $RCSfile: WWD_Events.java,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: obo $ $Date: 2004-09-08 14:16:09 $
+ * last change: $Author: kz $ $Date: 2004-11-27 09:09:20 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -75,6 +75,7 @@ import com.sun.star.wizards.common.FileAccess;
import com.sun.star.wizards.common.Helper;
import com.sun.star.wizards.common.JavaTools;
import com.sun.star.wizards.common.SystemDialog;
+import com.sun.star.wizards.ui.UnoDialog;
import com.sun.star.wizards.ui.event.DataAware;
import com.sun.star.wizards.ui.event.ListModelBinder;
import com.sun.star.wizards.ui.event.MethodInvocation;
@@ -213,11 +214,10 @@ public abstract class WWD_Events extends WWD_Startup {
}
}, resources.resLoadingSession );
- System.out.println("finished load session");
+ //System.out.println("finished load session");
try {
- refreshStylePreview();
- updateIconsetText();
+ refreshStylePreview(); updateIconsetText();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
@@ -425,7 +425,7 @@ public abstract class WWD_Events extends WWD_Startup {
bgDialog.createWindowPeer(xControl.getPeer());
}
bgDialog.setSelected(settings.cp_DefaultSession.cp_Design.cp_BackgroundImage);
- short i = bgDialog.executeDialog(WWD_Events.this);
+ short i = bgDialog.executeDialog((UnoDialog)WWD_Events.this);
if (i == 1) //ok
setBackground(bgDialog.getSelected());
} catch (Exception ex) {
@@ -467,7 +467,7 @@ public abstract class WWD_Events extends WWD_Startup {
iconsDialog.setIconset(settings.cp_DefaultSession.cp_Design.cp_IconSet);
- short i = iconsDialog.executeDialog(WWD_Events.this);
+ short i = iconsDialog.executeDialog((UnoDialog)WWD_Events.this);
if (i == 1) //ok
setIconset(iconsDialog.getIconset());
} catch (Exception ex) {