summaryrefslogtreecommitdiffstats
path: root/include/connectivity
diff options
context:
space:
mode:
authorJochen Nitschke <j.nitschke+logerrit@ok.de>2016-12-06 20:42:22 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-12-07 10:56:36 +0000
commitd1a9c73ea16f5b4838f639ce2bb2226d9b9b334a (patch)
tree1fbc59474ab27dbb4c7e53e50911f8df2cd2c054 /include/connectivity
parentsw: use auto when initializing with a cast in rtfattributeoutput (diff)
downloadcore-d1a9c73ea16f5b4838f639ce2bb2226d9b9b334a.tar.gz
core-d1a9c73ea16f5b4838f639ce2bb2226d9b9b334a.zip
tdf#88206 replace cppu::WeakImplHelper* misc
also edited two examples in canvas comments Change-Id: Iac82b462168f869f995c33bb2c639f3dbe09cbd5 Reviewed-on: https://gerrit.libreoffice.org/31715 Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Tested-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'include/connectivity')
-rw-r--r--include/connectivity/sdbcx/VTypeDef.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/connectivity/sdbcx/VTypeDef.hxx b/include/connectivity/sdbcx/VTypeDef.hxx
index 65afc14fbcc5..8328c3573195 100644
--- a/include/connectivity/sdbcx/VTypeDef.hxx
+++ b/include/connectivity/sdbcx/VTypeDef.hxx
@@ -21,7 +21,7 @@
#define INCLUDED_CONNECTIVITY_SDBCX_VTYPEDEF_HXX
#include <com/sun/star/sdbcx/XColumnsSupplier.hpp>
-#include <cppuhelper/compbase3.hxx>
+#include <cppuhelper/compbase.hxx>
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/container/XNamed.hpp>
@@ -29,7 +29,7 @@ namespace connectivity
{
namespace sdbcx
{
- typedef ::cppu::WeakComponentImplHelper3< css::sdbcx::XColumnsSupplier,
+ typedef cppu::WeakComponentImplHelper< css::sdbcx::XColumnsSupplier,
css::container::XNamed,
css::lang::XServiceInfo> ODescriptor_BASE;
}