diff options
author | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2017-06-23 21:25:26 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-06-26 09:05:43 +0200 |
commit | 97ee2bbd402c8457f4bf8fe6fd8f5f36590b963f (patch) | |
tree | 1b69cef6af129c2c9c7d7013693ac67e4160d846 /extensions/source/dbpilots/wizardservices.cxx | |
parent | e61c97f08e5472b64ba33fc64a595ad48de4b357 (diff) |
extensions: remove COMPMOD preprocessor defines
COMPMOD_RESPREFIX=abp was unused ever since initial commit in 2001.
COMPMOD_NAMESPACE was used to set the namespace name qualifier of
the helper in componentmodule.hxx to the extension's namespace name.
I don't see why this is necessary as the helper is always compiled in
a separate extension library.
Change-Id: I287607008db3dc0ebc32731536747a921c91807d
Reviewed-on: https://gerrit.libreoffice.org/39184
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'extensions/source/dbpilots/wizardservices.cxx')
-rw-r--r-- | extensions/source/dbpilots/wizardservices.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/source/dbpilots/wizardservices.cxx b/extensions/source/dbpilots/wizardservices.cxx index 52bcf33f6f0b..5f8a8e744af5 100644 --- a/extensions/source/dbpilots/wizardservices.cxx +++ b/extensions/source/dbpilots/wizardservices.cxx @@ -29,21 +29,21 @@ // the registration methods extern "C" void SAL_CALL createRegistryInfo_OGroupBoxWizard() { - static ::dbp::OMultiInstanceAutoRegistration< + static compmodule::OMultiInstanceAutoRegistration< ::dbp::OUnoAutoPilot< ::dbp::OGroupBoxWizard, ::dbp::OGroupBoxSI > > aAutoRegistration; } extern "C" void SAL_CALL createRegistryInfo_OListComboWizard() { - static ::dbp::OMultiInstanceAutoRegistration< + static compmodule::OMultiInstanceAutoRegistration< ::dbp::OUnoAutoPilot< ::dbp::OListComboWizard, ::dbp::OListComboSI > > aAutoRegistration; } extern "C" void SAL_CALL createRegistryInfo_OGridWizard() { - static ::dbp::OMultiInstanceAutoRegistration< + static compmodule::OMultiInstanceAutoRegistration< ::dbp::OUnoAutoPilot< ::dbp::OGridWizard, ::dbp::OGridSI > > aAutoRegistration; } |