diff options
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/uno/genericunodialog.cxx | 2 | ||||
-rw-r--r-- | svtools/source/uno/toolboxcontroller.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/uno/genericunodialog.cxx b/svtools/source/uno/genericunodialog.cxx index ba58a6281387..771420065f1f 100644 --- a/svtools/source/uno/genericunodialog.cxx +++ b/svtools/source/uno/genericunodialog.cxx @@ -93,7 +93,7 @@ Sequence<Type> SAL_CALL OGenericUnoDialog::getTypes( ) throw(RuntimeException, { return ::comphelper::concatSequences( OGenericUnoDialogBase::getTypes(), - ::comphelper::OPropertyContainer::getTypes() + getBaseTypes() ); } diff --git a/svtools/source/uno/toolboxcontroller.cxx b/svtools/source/uno/toolboxcontroller.cxx index 95addd72ff6c..a7ebe11b55b3 100644 --- a/svtools/source/uno/toolboxcontroller.cxx +++ b/svtools/source/uno/toolboxcontroller.cxx @@ -153,7 +153,7 @@ css::uno::Sequence<css::uno::Type> ToolboxController::getTypes() throw (css::uno::RuntimeException, std::exception) { css::uno::Sequence<css::uno::Type> s1(ToolboxController_Base::getTypes()); - css::uno::Sequence<css::uno::Type> s2(OPropertyContainer::getTypes()); + css::uno::Sequence<css::uno::Type> s2(getBaseTypes()); sal_Int32 n = s1.getLength(); s1.realloc(n + s2.getLength()); for (sal_Int32 i = 0; i != s2.getLength(); ++i) { |