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/ext | |
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/ext')
-rw-r--r-- | dbaccess/source/ext/macromigration/progresscapture.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/ext/macromigration/progresscapture.hxx b/dbaccess/source/ext/macromigration/progresscapture.hxx index e7633af9e7e2..f36630250feb 100644 --- a/dbaccess/source/ext/macromigration/progresscapture.hxx +++ b/dbaccess/source/ext/macromigration/progresscapture.hxx @@ -22,7 +22,7 @@ #include <com/sun/star/task/XStatusIndicator.hpp> -#include <cppuhelper/implbase1.hxx> +#include <cppuhelper/implbase.hxx> #include <memory> @@ -32,8 +32,8 @@ namespace dbmm class IMigrationProgress; // ProgressCapture - typedef ::cppu::WeakImplHelper1 < ::com::sun::star::task::XStatusIndicator - > ProgressCapture_Base; + typedef ::cppu::WeakImplHelper< ::com::sun::star::task::XStatusIndicator + > ProgressCapture_Base; struct ProgressCapture_Data; |