diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-07-17 11:59:26 +0900 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-07-17 07:13:29 +0000 |
commit | 7fa29ecc727c04159cee92aebc14fc5b1037a965 (patch) | |
tree | a9c7a588d304894a88023fd8020795290faa869a /dbaccess/source/ui/control/sqledit.cxx | |
parent | a90c6eb99c8c2167c4b1ec75a21a30a344bfea43 (diff) |
tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants, for dbaccess.
Change-Id: I60921b1b1d3b65fb9087552ed118c60dc9f89032
Reviewed-on: https://gerrit.libreoffice.org/17146
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'dbaccess/source/ui/control/sqledit.cxx')
-rw-r--r-- | dbaccess/source/ui/control/sqledit.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dbaccess/source/ui/control/sqledit.cxx b/dbaccess/source/ui/control/sqledit.cxx index 938404686cc4..6831b573f6f7 100644 --- a/dbaccess/source/ui/control/sqledit.cxx +++ b/dbaccess/source/ui/control/sqledit.cxx @@ -35,11 +35,12 @@ #include "QueryDesignView.hxx" #include <svl/smplhint.hxx> #include <vcl/settings.hxx> +#include <cppuhelper/implbase.hxx> using namespace dbaui; class OSqlEdit::ChangesListener: - public cppu::WeakImplHelper1< css::beans::XPropertiesChangeListener > + public cppu::WeakImplHelper< css::beans::XPropertiesChangeListener > { public: ChangesListener(OSqlEdit & editor): editor_(editor) {} |