summaryrefslogtreecommitdiff
path: root/smoketest
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-09-15 10:08:55 +0900
committerNoel Grandin <noelgrandin@gmail.com>2015-09-15 06:19:28 +0000
commitee7da352b885cfead32abb3fd111acead0c32816 (patch)
tree1609401dc01cc76a53a65b033827cfbe42fd1d0b /smoketest
parent5bbff06137a87e97260a188f6745cf2a227f15cf (diff)
Resolves: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants. Change-Id: I7154f9472f02fdf47d27ba715db55bb1ec669a8a Reviewed-on: https://gerrit.libreoffice.org/18580 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'smoketest')
-rw-r--r--smoketest/smoketest.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/smoketest/smoketest.cxx b/smoketest/smoketest.cxx
index 6354c2a4ce49..8570bc31c360 100644
--- a/smoketest/smoketest.cxx
+++ b/smoketest/smoketest.cxx
@@ -39,7 +39,7 @@
#include "com/sun/star/uno/RuntimeException.hpp"
#include "com/sun/star/uno/Sequence.hxx"
#include "com/sun/star/util/URL.hpp"
-#include "cppuhelper/implbase1.hxx"
+#include <cppuhelper/implbase.hxx>
#include "cppunit/TestAssert.h"
#include "cppunit/TestFixture.h"
#include "cppunit/extensions/HelperMacros.h"
@@ -62,7 +62,7 @@ struct Result: private boost::noncopyable {
};
class Listener:
- public cppu::WeakImplHelper1< css::frame::XDispatchResultListener >
+ public cppu::WeakImplHelper< css::frame::XDispatchResultListener >
{
public:
explicit Listener(Result * result): result_(result) { OSL_ASSERT(result != 0); }
@@ -87,7 +87,7 @@ void Listener::dispatchFinished(css::frame::DispatchResultEvent const & Result)
result_->condition.set();
}
-class Callback: public cppu::WeakImplHelper1< css::awt::XCallback > {
+class Callback: public cppu::WeakImplHelper< css::awt::XCallback > {
public:
Callback(
css::uno::Reference< css::frame::XNotifyingDispatch > const & dispatch,