diff options
author | RĂ¼diger Timm <rt@openoffice.org> | 2008-07-07 11:58:06 +0000 |
---|---|---|
committer | RĂ¼diger Timm <rt@openoffice.org> | 2008-07-07 11:58:06 +0000 |
commit | a52d240b7e1b40c363a00e4441a0d4b59c9209c7 (patch) | |
tree | c8966a45724fb9b4dc217d78ef44397f407ef13f /wizards | |
parent | 9d54fee6d28d16b430cdbdffb0ffbec5b2cdf58e (diff) |
INTEGRATION: CWS tbe34 (1.16.8); FILE MERGED
2008/07/02 08:13:00 lla 1.16.8.1: #i69889# A11Y fixed in wizards
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/com/sun/star/wizards/ui/UnoDialog.java | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/wizards/com/sun/star/wizards/ui/UnoDialog.java b/wizards/com/sun/star/wizards/ui/UnoDialog.java index 59f2cd4790cf..212398ed613f 100644 --- a/wizards/com/sun/star/wizards/ui/UnoDialog.java +++ b/wizards/com/sun/star/wizards/ui/UnoDialog.java @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: UnoDialog.java,v $ - * $Revision: 1.16 $ + * $Revision: 1.17 $ * * This file is part of OpenOffice.org. * @@ -69,7 +69,7 @@ public class UnoDialog implements EventNames { public Hashtable ControlList; public Resource m_oResource; public XWindowPeer xWindowPeer = null; - protected PeerConfig oPeerConfig; + private PeerConfig m_oPeerConfig; protected AbstractListener guiEventListener; @@ -95,7 +95,8 @@ public class UnoDialog implements EventNames { xDlgNameAccess = (XNameAccess) UnoRuntime.queryInterface(XNameAccess.class, xDialogModel); xComponent = (XComponent) UnoRuntime.queryInterface(XComponent.class, xUnoDialog); xWindow = (XWindow) UnoRuntime.queryInterface(XWindow.class, xUnoDialog); - setPeerConfiguration(); + + // setPeerConfiguration(); // LLA: will be done, if really used! } catch (com.sun.star.uno.Exception exception) { exception.printStackTrace(System.out); } @@ -118,15 +119,19 @@ public class UnoDialog implements EventNames { } - public void setPeerConfiguration(){ - oPeerConfig = new PeerConfig(this); + public void createPeerConfiguration() + { + m_oPeerConfig = new PeerConfig(this); } - public PeerConfig getPeerConfiguration(){ - if (oPeerConfig == null) - setPeerConfiguration(); - return oPeerConfig; + public PeerConfig getPeerConfiguration() + { + if (m_oPeerConfig == null) + { + createPeerConfiguration(); + } + return m_oPeerConfig; } |