summaryrefslogtreecommitdiff
path: root/framework/source/uielement/uicommanddescription.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-08-14 10:23:57 +0900
committerNoel Grandin <noelgrandin@gmail.com>2015-08-14 10:46:14 +0000
commit431f2ce81893db21f23572926e8a5b045c67e9ae (patch)
tree6ea4842720498966bbf22d135756a64ee9505280 /framework/source/uielement/uicommanddescription.cxx
parent48c4810edf302c1f0593328535f065ed338e0a18 (diff)
framework: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants. Change-Id: I6acff50f23bcbac58c689caf2a7f07dbd5404e57 Reviewed-on: https://gerrit.libreoffice.org/17734 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'framework/source/uielement/uicommanddescription.cxx')
-rw-r--r--framework/source/uielement/uicommanddescription.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/source/uielement/uicommanddescription.cxx b/framework/source/uielement/uicommanddescription.cxx
index cbf0d61abb84..d4eb039da02b 100644
--- a/framework/source/uielement/uicommanddescription.cxx
+++ b/framework/source/uielement/uicommanddescription.cxx
@@ -32,7 +32,7 @@
#include <com/sun/star/container/XContainer.hpp>
#include <rtl/ustrbuf.hxx>
-#include <cppuhelper/implbase2.hxx>
+#include <cppuhelper/implbase.hxx>
#include <unotools/configmgr.hxx>
#include <vcl/mnemonic.hxx>
@@ -79,7 +79,7 @@ namespace framework
// Configuration access class for PopupMenuControllerFactory implementation
class ConfigurationAccess_UICommand : // Order is necessary for right initialization!
- public ::cppu::WeakImplHelper2<XNameAccess,XContainerListener>
+ public ::cppu::WeakImplHelper<XNameAccess,XContainerListener>
{
osl::Mutex m_aMutex;
public: