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/browser/dbloader.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/browser/dbloader.cxx')
-rw-r--r-- | dbaccess/source/ui/browser/dbloader.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/ui/browser/dbloader.cxx b/dbaccess/source/ui/browser/dbloader.cxx index 206790bfd33f..a0f36d8522c1 100644 --- a/dbaccess/source/ui/browser/dbloader.cxx +++ b/dbaccess/source/ui/browser/dbloader.cxx @@ -42,7 +42,7 @@ #include <com/sun/star/sdbc/XDataSource.hpp> #include <comphelper/namedvaluecollection.hxx> #include <comphelper/processfactory.hxx> -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> #include <cppuhelper/supportsservice.hxx> #include <toolkit/awt/vclxwindow.hxx> #include <toolkit/helper/vclunohelper.hxx> @@ -61,7 +61,7 @@ using namespace ::com::sun::star::lang; using namespace ::com::sun::star::registry; using namespace dbaui; -class DBContentLoader : public ::cppu::WeakImplHelper2< XFrameLoader, XServiceInfo> +class DBContentLoader : public ::cppu::WeakImplHelper< XFrameLoader, XServiceInfo> { private: OUString m_aURL; |