summaryrefslogtreecommitdiff
path: root/sd/source/ui/remotecontrol/Receiver.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/remotecontrol/Receiver.cxx')
-rw-r--r--sd/source/ui/remotecontrol/Receiver.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/ui/remotecontrol/Receiver.cxx b/sd/source/ui/remotecontrol/Receiver.cxx
index b3480cc9b3b1..dd92e8e99d62 100644
--- a/sd/source/ui/remotecontrol/Receiver.cxx
+++ b/sd/source/ui/remotecontrol/Receiver.cxx
@@ -134,7 +134,7 @@ void Receiver::executeCommand( const std::vector<OString> &aCommand )
try
{
// std::cerr << "pointer_coordination in the is" << std::endl;
- xSlideShow->setProperty(beans::PropertyValue("PointerPosition", -1, makeAny(pos),
+ xSlideShow->setProperty(beans::PropertyValue("PointerPosition", -1, Any(pos),
beans::PropertyState_DIRECT_VALUE));
}
catch (Exception&)
@@ -144,7 +144,7 @@ void Receiver::executeCommand( const std::vector<OString> &aCommand )
try
{
- xSlideShow->setProperty(beans::PropertyValue("PointerVisible", -1, makeAny(true),
+ xSlideShow->setProperty(beans::PropertyValue("PointerVisible", -1, Any(true),
beans::PropertyState_DIRECT_VALUE));
}
catch (Exception&)
@@ -163,7 +163,7 @@ void Receiver::executeCommand( const std::vector<OString> &aCommand )
xSlideShow->setProperty(
beans::PropertyValue( "PointerVisible" ,
-1,
- makeAny( false ),
+ Any( false ),
beans::PropertyState_DIRECT_VALUE ) );
}
catch ( Exception& )
@@ -187,7 +187,7 @@ void Receiver::executeCommand( const std::vector<OString> &aCommand )
xSlideShow->setProperty(
beans::PropertyValue( "PointerPosition" ,
-1,
- makeAny( pos ),
+ Any( pos ),
beans::PropertyState_DIRECT_VALUE ) );
}
catch ( Exception& )