diff options
author | Noel Grandin <noel@peralex.com> | 2014-08-12 12:11:25 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-08-19 14:57:13 +0200 |
commit | 3a8d3519889a68ddf209ea7c83307bec51cd6da0 (patch) | |
tree | ab67ef1b6f1f65443b7c4d0e086fdcff17f84283 /swext | |
parent | 8b65a61788aa18e97de068bc75fdeecb20a23026 (diff) |
java: remove unused methods
Change-Id: Ibb905e6f3e7d92a0e558f1f6562e5b472cd2717b
Diffstat (limited to 'swext')
-rw-r--r-- | swext/mediawiki/src/com/sun/star/wiki/Helper.java | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/swext/mediawiki/src/com/sun/star/wiki/Helper.java b/swext/mediawiki/src/com/sun/star/wiki/Helper.java index 57da1e841fb4..f2ab089ac017 100644 --- a/swext/mediawiki/src/com/sun/star/wiki/Helper.java +++ b/swext/mediawiki/src/com/sun/star/wiki/Helper.java @@ -21,7 +21,6 @@ package com.sun.star.wiki; import com.sun.star.awt.MessageBoxButtons; import com.sun.star.awt.MessageBoxType; import com.sun.star.awt.XControl; -import com.sun.star.awt.XControlContainer; import com.sun.star.awt.XDialog; import com.sun.star.awt.XMessageBox; import com.sun.star.awt.XMessageBoxFactory; @@ -815,31 +814,6 @@ public class Helper return aHostConfig; } - private static XControl GetControlFromDialog( XDialog xDialog, String aControlName ) - { - XControl xResult = null; - XControlContainer xControlCont = UnoRuntime.queryInterface( XControlContainer.class, xDialog ); - - if ( xControlCont != null ) - { - Object oControl = xControlCont.getControl( aControlName ); - xResult = UnoRuntime.queryInterface( XControl.class, oControl ); - } - - return xResult; - } - - private static XPropertySet GetSubControlPropSet( XDialog xDialog, String aControlName ) - { - XControl xControl = GetControlFromDialog( xDialog, aControlName ); - if ( xControl != null ) - return UnoRuntime.queryInterface( XPropertySet.class, xControl.getModel() ); - - return null; - } - - - protected static String[] GetPasswordsForURLAndUser( XComponentContext xContext, String sURL, String sUserName ) { String[] aResult = null; |