summaryrefslogtreecommitdiffstats
path: root/sdext/source/minimizer/unodialog.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sdext/source/minimizer/unodialog.cxx')
-rw-r--r--sdext/source/minimizer/unodialog.cxx20
1 files changed, 0 insertions, 20 deletions
diff --git a/sdext/source/minimizer/unodialog.cxx b/sdext/source/minimizer/unodialog.cxx
index d75d50b4c350..986d2866dfe9 100644
--- a/sdext/source/minimizer/unodialog.cxx
+++ b/sdext/source/minimizer/unodialog.cxx
@@ -31,8 +31,6 @@
#include <com/sun/star/view/XControlAccess.hpp>
-
-
using namespace ::com::sun::star::awt;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::util;
@@ -65,14 +63,12 @@ UnoDialog::UnoDialog( const Reference< XComponentContext > &rxContext, Reference
}
-
UnoDialog::~UnoDialog()
{
}
-
void UnoDialog::execute()
{
mxDialog->setEnable( sal_True );
@@ -87,7 +83,6 @@ void UnoDialog::endExecute( bool bStatus )
}
-
Reference< XWindowPeer > UnoDialog::createWindowPeer( Reference< XWindowPeer > xParentPeer )
throw ( Exception )
{
@@ -102,7 +97,6 @@ Reference< XWindowPeer > UnoDialog::createWindowPeer( Reference< XWindowPeer > x
}
-
Reference< XInterface > UnoDialog::insertControlModel( const OUString& rServiceName, const OUString& rName,
const Sequence< OUString >& rPropertyNames, const Sequence< Any >& rPropertyValues )
{
@@ -121,7 +115,6 @@ Reference< XInterface > UnoDialog::insertControlModel( const OUString& rServiceN
}
-
void UnoDialog::setVisible( const OUString& rName, bool bVisible )
{
try
@@ -136,7 +129,6 @@ void UnoDialog::setVisible( const OUString& rName, bool bVisible )
}
-
Reference< XButton > UnoDialog::insertButton( const OUString& rName, Reference< XActionListener > xActionListener,
const Sequence< OUString >& rPropertyNames, const Sequence< Any >& rPropertyValues )
{
@@ -163,7 +155,6 @@ Reference< XButton > UnoDialog::insertButton( const OUString& rName, Reference<
}
-
Reference< XFixedText > UnoDialog::insertFixedText( const OUString& rName, const Sequence< OUString >& rPropertyNames, const Sequence< Any >& rPropertyValues )
{
Reference< XFixedText > xFixedText;
@@ -181,7 +172,6 @@ Reference< XFixedText > UnoDialog::insertFixedText( const OUString& rName, const
}
-
Reference< XCheckBox > UnoDialog::insertCheckBox( const OUString& rName, const Sequence< OUString >& rPropertyNames, const Sequence< Any >& rPropertyValues )
{
Reference< XCheckBox > xCheckBox;
@@ -199,7 +189,6 @@ Reference< XCheckBox > UnoDialog::insertCheckBox( const OUString& rName, const S
}
-
Reference< XControl > UnoDialog::insertFormattedField( const OUString& rName, const Sequence< OUString >& rPropertyNames, const Sequence< Any >& rPropertyValues )
{
Reference< XControl > xControl;
@@ -217,7 +206,6 @@ Reference< XControl > UnoDialog::insertFormattedField( const OUString& rName, co
}
-
Reference< XComboBox > UnoDialog::insertComboBox( const OUString& rName, const Sequence< OUString >& rPropertyNames, const Sequence< Any >& rPropertyValues )
{
Reference< XComboBox > xControl;
@@ -235,7 +223,6 @@ Reference< XComboBox > UnoDialog::insertComboBox( const OUString& rName, const S
}
-
Reference< XRadioButton > UnoDialog::insertRadioButton( const OUString& rName, const Sequence< OUString >& rPropertyNames, const Sequence< Any >& rPropertyValues )
{
Reference< XRadioButton > xControl;
@@ -253,7 +240,6 @@ Reference< XRadioButton > UnoDialog::insertRadioButton( const OUString& rName, c
}
-
Reference< XListBox > UnoDialog::insertListBox( const OUString& rName, const Sequence< OUString >& rPropertyNames, const Sequence< Any >& rPropertyValues )
{
Reference< XListBox > xControl;
@@ -271,7 +257,6 @@ Reference< XListBox > UnoDialog::insertListBox( const OUString& rName, const Seq
}
-
Reference< XControl > UnoDialog::insertImage( const OUString& rName, const Sequence< OUString >& rPropertyNames, const Sequence< Any >& rPropertyValues )
{
Reference< XControl > xControl;
@@ -289,7 +274,6 @@ Reference< XControl > UnoDialog::insertImage( const OUString& rName, const Seque
}
-
void UnoDialog::setControlProperty( const OUString& rControlName, const OUString& rPropertyName, const Any& rPropertyValue )
{
try
@@ -306,7 +290,6 @@ void UnoDialog::setControlProperty( const OUString& rControlName, const OUString
}
-
Any UnoDialog::getControlProperty( const OUString& rControlName, const OUString& rPropertyName )
{
Any aRet;
@@ -325,7 +308,6 @@ Any UnoDialog::getControlProperty( const OUString& rControlName, const OUString&
}
-
void UnoDialog::enableControl( const OUString& rControlName )
{
const OUString sEnabled( "Enabled" );
@@ -333,7 +315,6 @@ void UnoDialog::enableControl( const OUString& rControlName )
}
-
void UnoDialog::disableControl( const OUString& rControlName )
{
const OUString sEnabled( "Enabled" );
@@ -341,5 +322,4 @@ void UnoDialog::disableControl( const OUString& rControlName )
}
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */