diff options
Diffstat (limited to 'smoketest')
-rw-r--r-- | smoketest/smoketest.cxx | 6 |
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, |