summaryrefslogtreecommitdiff
path: root/include/svtools/genericunodialog.hxx
diff options
context:
space:
mode:
authorJochen Nitschke <j.nitschke+logerrit@ok.de>2016-12-04 13:25:08 +0100
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-12-04 15:57:43 +0000
commit1bc6bd89adfdfe77e0355319c9b25ee6999f74fc (patch)
tree45967d7302ec6971d234231c31e48ede01e1f686 /include/svtools/genericunodialog.hxx
parentfe471fec199f5a16bd49caa45561abc518ac75bb (diff)
tdf#88206 replace cppu::WeakImplHelper* in svtools and svx
and remove unused implbase*.hxx and compbase*.hxx includes Change-Id: Iedf6b6dce09b5baf714a1b3394bb7fb3526cca82 Reviewed-on: https://gerrit.libreoffice.org/31594 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svtools/genericunodialog.hxx')
-rw-r--r--include/svtools/genericunodialog.hxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/include/svtools/genericunodialog.hxx b/include/svtools/genericunodialog.hxx
index 6527ebbb1661..5116a14b04cf 100644
--- a/include/svtools/genericunodialog.hxx
+++ b/include/svtools/genericunodialog.hxx
@@ -31,7 +31,7 @@
#include <com/sun/star/beans/PropertyAttribute.hpp>
#include <com/sun/star/lang/NotInitializedException.hpp>
-#include <cppuhelper/implbase3.hxx>
+#include <cppuhelper/implbase.hxx>
#include <cppuhelper/propshlp.hxx>
#include <comphelper/proparrhlp.hxx>
#include <comphelper/uno3.hxx>
@@ -56,10 +56,9 @@ namespace svt
#define UNODIALOG_PROPERTY_PARENT "ParentWindow"
- typedef ::cppu::WeakImplHelper3 < css::ui::dialogs::XExecutableDialog
- , css::lang::XServiceInfo
- , css::lang::XInitialization
- > OGenericUnoDialogBase;
+ typedef cppu::WeakImplHelper< css::ui::dialogs::XExecutableDialog,
+ css::lang::XServiceInfo,
+ css::lang::XInitialization > OGenericUnoDialogBase;
/** abstract base class for implementing UNO objects representing dialogs (com.sun.star.awt::XDialog)
*/