summaryrefslogtreecommitdiff
path: root/sd/source/ui/remotecontrol
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/remotecontrol')
-rw-r--r--sd/source/ui/remotecontrol/Listener.cxx2
-rw-r--r--sd/source/ui/remotecontrol/Listener.hxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/remotecontrol/Listener.cxx b/sd/source/ui/remotecontrol/Listener.cxx
index f166609f1a90..5ba6cfda15ab 100644
--- a/sd/source/ui/remotecontrol/Listener.cxx
+++ b/sd/source/ui/remotecontrol/Listener.cxx
@@ -22,7 +22,7 @@ using namespace ::com::sun::star::frame;
Listener::Listener( const ::rtl::Reference<Communicator>& rCommunicator,
sd::Transmitter *aTransmitter ):
- ::cppu::WeakComponentImplHelper1< XSlideShowListener >( m_aMutex ),
+ ::cppu::WeakComponentImplHelper< XSlideShowListener >( m_aMutex ),
mCommunicator( rCommunicator ),
pTransmitter( NULL )
{
diff --git a/sd/source/ui/remotecontrol/Listener.hxx b/sd/source/ui/remotecontrol/Listener.hxx
index bb89477615d1..5a27f6d07995 100644
--- a/sd/source/ui/remotecontrol/Listener.hxx
+++ b/sd/source/ui/remotecontrol/Listener.hxx
@@ -14,7 +14,7 @@
#include <com/sun/star/presentation/XSlideShowListener.hpp>
#include <com/sun/star/presentation/XSlideShowController.hpp>
-#include <cppuhelper/compbase1.hxx>
+#include <cppuhelper/compbase.hxx>
#include <cppuhelper/basemutex.hxx>
#include <osl/socket.hxx>
@@ -28,7 +28,7 @@ namespace sd {
*/
class Listener
: protected ::cppu::BaseMutex,
- public ::cppu::WeakComponentImplHelper1< css::presentation::XSlideShowListener >
+ public ::cppu::WeakComponentImplHelper< css::presentation::XSlideShowListener >
{
public:
Listener( const ::rtl::Reference<Communicator>& rServer, sd::Transmitter *aTransmitter );