summaryrefslogtreecommitdiff
path: root/sd/source/ui/framework/configuration/GenericConfigurationChangeRequest.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-12-18 13:30:26 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-12-18 14:12:31 +0100
commitcb9e8bbdb9dd3f2f83ab862ffa6d734af7be79db (patch)
tree3fca04a12a362514eccdb20e7f668dfe28232573 /sd/source/ui/framework/configuration/GenericConfigurationChangeRequest.cxx
parentb9def20cea8d8364ac1fa14aaf1da775128f0fd3 (diff)
sd: Use appropriate OUString functions on string constants
Change-Id: Ic402f5b5be1f657d9045091056bcb731b3407a9d
Diffstat (limited to 'sd/source/ui/framework/configuration/GenericConfigurationChangeRequest.cxx')
-rw-r--r--sd/source/ui/framework/configuration/GenericConfigurationChangeRequest.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/framework/configuration/GenericConfigurationChangeRequest.cxx b/sd/source/ui/framework/configuration/GenericConfigurationChangeRequest.cxx
index cb4dc58ba152..6653a3409550 100644
--- a/sd/source/ui/framework/configuration/GenericConfigurationChangeRequest.cxx
+++ b/sd/source/ui/framework/configuration/GenericConfigurationChangeRequest.cxx
@@ -64,7 +64,7 @@ void SAL_CALL GenericConfigurationChangeRequest::execute (
OUString SAL_CALL GenericConfigurationChangeRequest::getName (void)
throw (RuntimeException, std::exception)
{
- return OUString("GenericConfigurationChangeRequest ")
+ return "GenericConfigurationChangeRequest "
+ (meMode==Activation ? OUString("activate ") : OUString("deactivate "))
+ FrameworkHelper::ResourceIdToString(mxResourceId);
}