summaryrefslogtreecommitdiff
path: root/framework/source/uielement
diff options
context:
space:
mode:
authorGökhan Gurbetoğlu <gokhan.gurbetoglu@pardus.org.tr>2016-08-24 14:43:05 +0300
committerNoel Grandin <noelgrandin@gmail.com>2016-08-26 07:15:34 +0000
commit674e0f0b43392a7e7fa515dad8427ccc901f7a01 (patch)
treebc2544d497b2dca7b2f5f8f1fbc704ed5f098b61 /framework/source/uielement
parentea9a90d83d92076d41abfd31a1fd3a5d84b6ba92 (diff)
tdf#100726 - Improve readability of OUString concatanations
Change-Id: I3099818283a9801976288d0efa67a8711106f376 Reviewed-on: https://gerrit.libreoffice.org/28360 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'framework/source/uielement')
-rw-r--r--framework/source/uielement/uicommanddescription.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/framework/source/uielement/uicommanddescription.cxx b/framework/source/uielement/uicommanddescription.cxx
index 2dd10988f7a3..5d5b44732e87 100644
--- a/framework/source/uielement/uicommanddescription.cxx
+++ b/framework/source/uielement/uicommanddescription.cxx
@@ -203,13 +203,13 @@ ConfigurationAccess_UICommand::ConfigurationAccess_UICommand( const OUString& aM
m_bGenericDataRetrieved( false )
{
// Create configuration hierarchical access name
- m_aConfigCmdAccess += aModuleName;
- m_aConfigCmdAccess += CONFIGURATION_CMD_ELEMENT_ACCESS;
+ m_aConfigCmdAccess += aModuleName
+ + CONFIGURATION_CMD_ELEMENT_ACCESS;
m_xConfigProvider = theDefaultProvider::get( rxContext );
- m_aConfigPopupAccess += aModuleName;
- m_aConfigPopupAccess += CONFIGURATION_POP_ELEMENT_ACCESS;
+ m_aConfigPopupAccess += aModuleName
+ + CONFIGURATION_POP_ELEMENT_ACCESS;
}
ConfigurationAccess_UICommand::~ConfigurationAccess_UICommand()