summaryrefslogtreecommitdiff
path: root/extensions/source/dbpilots/wizardservices.cxx
diff options
context:
space:
mode:
authorFrank Schönheit <fs@openoffice.org>2001-02-23 14:19:08 +0000
committerFrank Schönheit <fs@openoffice.org>2001-02-23 14:19:08 +0000
commit56b4377daf0b8b09c36a90190d14454b8667a6a8 (patch)
tree28e5aaedf102fa607cb9ae35031eb6d9a49cc7d1 /extensions/source/dbpilots/wizardservices.cxx
parent375094fb1c528c49c06cee2edf98918c80858610 (diff)
some changes / centralizations - added the list-/combobox wizard
Diffstat (limited to 'extensions/source/dbpilots/wizardservices.cxx')
-rw-r--r--extensions/source/dbpilots/wizardservices.cxx34
1 files changed, 32 insertions, 2 deletions
diff --git a/extensions/source/dbpilots/wizardservices.cxx b/extensions/source/dbpilots/wizardservices.cxx
index e3fb1ff57591..0bbcb6661b85 100644
--- a/extensions/source/dbpilots/wizardservices.cxx
+++ b/extensions/source/dbpilots/wizardservices.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: wizardservices.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: fs $ $Date: 2001-02-21 09:24:59 $
+ * last change: $Author: fs $ $Date: 2001-02-23 15:19:08 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -68,6 +68,9 @@
#ifndef _EXTENSIONS_DBP_GROUPBOXWIZ_HXX_
#include "groupboxwiz.hxx"
#endif
+#ifndef _EXTENSIONS_DBP_LISTCOMBOWIZARD_HXX_
+#include "listcombowizard.hxx"
+#endif
// the registration methods
extern "C" void SAL_CALL createRegistryInfo_OGroupBoxWizard()
@@ -77,6 +80,13 @@ extern "C" void SAL_CALL createRegistryInfo_OGroupBoxWizard()
> aAutoRegistration;
}
+extern "C" void SAL_CALL createRegistryInfo_OListComboWizard()
+{
+ static ::dbp::OMultiInstanceAutoRegistration<
+ ::dbp::OUnoAutoPilot< ::dbp::OListComboWizard, ::dbp::OListComboSI >
+ > aAutoRegistration;
+}
+
//.........................................................................
namespace dbp
{
@@ -101,6 +111,23 @@ namespace dbp
return aReturn;
}
+ //=====================================================================
+ //= OListComboSI
+ //=====================================================================
+ //---------------------------------------------------------------------
+ ::rtl::OUString OListComboSI::getImplementationName() const
+ {
+ return ::rtl::OUString::createFromAscii("org.openoffice.comp.dbp.OListComboWizard");
+ }
+
+ //---------------------------------------------------------------------
+ Sequence< ::rtl::OUString > OListComboSI::getServiceNames() const
+ {
+ Sequence< ::rtl::OUString > aReturn(1);
+ aReturn[0] = ::rtl::OUString::createFromAscii("com.sun.star.sdb.ListComboBoxAutoPilot");
+ return aReturn;
+ }
+
//.........................................................................
} // namespace dbp
//.........................................................................
@@ -108,6 +135,9 @@ namespace dbp
/*************************************************************************
* history:
* $Log: not supported by cvs2svn $
+ * Revision 1.1 2001/02/21 09:24:59 fs
+ * initial checkin - form control auto pilots
+ *
*
* Revision 1.0 14.02.01 10:24:18 fs
************************************************************************/