summaryrefslogtreecommitdiff
path: root/sd/source/ui/tools/EventMultiplexer.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/tools/EventMultiplexer.cxx')
-rw-r--r--sd/source/ui/tools/EventMultiplexer.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/ui/tools/EventMultiplexer.cxx b/sd/source/ui/tools/EventMultiplexer.cxx
index f218a21d81df..2552f2b8d01c 100644
--- a/sd/source/ui/tools/EventMultiplexer.cxx
+++ b/sd/source/ui/tools/EventMultiplexer.cxx
@@ -381,7 +381,7 @@ void EventMultiplexer::Implementation::ConnectToController()
{
try
{
- xSet->addPropertyChangeListener(OUString(aCurrentPagePropertyName), this);
+ xSet->addPropertyChangeListener(aCurrentPagePropertyName, this);
}
catch (const beans::UnknownPropertyException&)
{
@@ -390,7 +390,7 @@ void EventMultiplexer::Implementation::ConnectToController()
try
{
- xSet->addPropertyChangeListener(OUString(aEditModePropertyName), this);
+ xSet->addPropertyChangeListener(aEditModePropertyName, this);
}
catch (const beans::UnknownPropertyException&)
{
@@ -425,7 +425,7 @@ void EventMultiplexer::Implementation::DisconnectFromController()
{
try
{
- xSet->removePropertyChangeListener(OUString(aCurrentPagePropertyName), this);
+ xSet->removePropertyChangeListener(aCurrentPagePropertyName, this);
}
catch (const beans::UnknownPropertyException&)
{
@@ -434,7 +434,7 @@ void EventMultiplexer::Implementation::DisconnectFromController()
try
{
- xSet->removePropertyChangeListener(OUString(aEditModePropertyName), this);
+ xSet->removePropertyChangeListener(aEditModePropertyName, this);
}
catch (const beans::UnknownPropertyException&)
{