diff options
Diffstat (limited to 'sd/source/ui/remotecontrol/Receiver.cxx')
-rw-r--r-- | sd/source/ui/remotecontrol/Receiver.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/remotecontrol/Receiver.cxx b/sd/source/ui/remotecontrol/Receiver.cxx index dc7b8cc8f4cc..892d72b98653 100644 --- a/sd/source/ui/remotecontrol/Receiver.cxx +++ b/sd/source/ui/remotecontrol/Receiver.cxx @@ -137,7 +137,7 @@ void Receiver::executeCommand( const std::vector<OString> &aCommand ) float y = aCommand[2].toFloat(); SolarMutexGuard aSolarGuard; - const ::com::sun::star::geometry::RealPoint2D pos(x,y); + const css::geometry::RealPoint2D pos(x,y); // std::cerr << "Pointer at ("<<pos.X<<","<<pos.Y<<")" << std::endl; if (xSlideShow.is()) try @@ -196,7 +196,7 @@ void Receiver::executeCommand( const std::vector<OString> &aCommand ) float y = aCommand[2].toFloat(); SAL_INFO( "sdremote", "Pointer at ("<<x<<","<<y<<")" ); - const ::com::sun::star::geometry::RealPoint2D pos(x,y); + const css::geometry::RealPoint2D pos(x,y); SolarMutexGuard aSolarGuard; if (xSlideShow.is()) try |