summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/uno/admindlg.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'dbaccess/source/ui/uno/admindlg.cxx')
-rw-r--r--dbaccess/source/ui/uno/admindlg.cxx20
1 files changed, 2 insertions, 18 deletions
diff --git a/dbaccess/source/ui/uno/admindlg.cxx b/dbaccess/source/ui/uno/admindlg.cxx
index b370e3352994..10b1f7252b55 100644
--- a/dbaccess/source/ui/uno/admindlg.cxx
+++ b/dbaccess/source/ui/uno/admindlg.cxx
@@ -17,13 +17,11 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-
#include "dbu_reghelper.hxx"
#include "admindlg.hxx"
#include "dbadmin.hxx"
#include <comphelper/processfactory.hxx>
-
using namespace dbaui;
extern "C" void SAL_CALL createRegistryInfo_ODataSourcePropertyDialog()
@@ -31,53 +29,44 @@ extern "C" void SAL_CALL createRegistryInfo_ODataSourcePropertyDialog()
static OMultiInstanceAutoRegistration< ODataSourcePropertyDialog > aAutoRegistration;
}
-//.........................................................................
namespace dbaui
{
-//.........................................................................
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::beans;
-//=========================================================================
-//-------------------------------------------------------------------------
ODataSourcePropertyDialog::ODataSourcePropertyDialog(const Reference< XComponentContext >& _rxORB)
:ODatabaseAdministrationDialog(_rxORB)
{
}
-//-------------------------------------------------------------------------
+
Sequence<sal_Int8> SAL_CALL ODataSourcePropertyDialog::getImplementationId( ) throw(RuntimeException)
{
static ::cppu::OImplementationId aId;
return aId.getImplementationId();
}
-//-------------------------------------------------------------------------
Reference< XInterface > SAL_CALL ODataSourcePropertyDialog::Create(const Reference< XMultiServiceFactory >& _rxFactory)
{
return *(new ODataSourcePropertyDialog( comphelper::getComponentContext(_rxFactory) ));
}
-//-------------------------------------------------------------------------
OUString SAL_CALL ODataSourcePropertyDialog::getImplementationName() throw(RuntimeException)
{
return getImplementationName_Static();
}
-//-------------------------------------------------------------------------
OUString ODataSourcePropertyDialog::getImplementationName_Static() throw(RuntimeException)
{
return OUString("org.openoffice.comp.dbu.ODatasourceAdministrationDialog");
}
-//-------------------------------------------------------------------------
::comphelper::StringSequence SAL_CALL ODataSourcePropertyDialog::getSupportedServiceNames() throw(RuntimeException)
{
return getSupportedServiceNames_Static();
}
-//-------------------------------------------------------------------------
::comphelper::StringSequence ODataSourcePropertyDialog::getSupportedServiceNames_Static() throw(RuntimeException)
{
::comphelper::StringSequence aSupported(1);
@@ -85,27 +74,24 @@ OUString ODataSourcePropertyDialog::getImplementationName_Static() throw(Runtime
return aSupported;
}
-//-------------------------------------------------------------------------
Reference<XPropertySetInfo> SAL_CALL ODataSourcePropertyDialog::getPropertySetInfo() throw(RuntimeException)
{
Reference<XPropertySetInfo> xInfo( createPropertySetInfo( getInfoHelper() ) );
return xInfo;
}
-//-------------------------------------------------------------------------
::cppu::IPropertyArrayHelper& ODataSourcePropertyDialog::getInfoHelper()
{
return *const_cast<ODataSourcePropertyDialog*>(this)->getArrayHelper();
}
-//------------------------------------------------------------------------------
::cppu::IPropertyArrayHelper* ODataSourcePropertyDialog::createArrayHelper( ) const
{
Sequence< Property > aProps;
describeProperties(aProps);
return new ::cppu::OPropertyArrayHelper(aProps);
}
-//------------------------------------------------------------------------------
+
Dialog* ODataSourcePropertyDialog::createDialog(Window* _pParent)
{
@@ -118,8 +104,6 @@ Dialog* ODataSourcePropertyDialog::createDialog(Window* _pParent)
return pDialog;
}
-//.........................................................................
} // namespace dbaui
-//.........................................................................
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */