diff options
author | Gökhan Gurbetoğlu <gokhan.gurbetoglu@pardus.org.tr> | 2016-08-24 14:43:05 +0300 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-08-26 07:15:34 +0000 |
commit | 674e0f0b43392a7e7fa515dad8427ccc901f7a01 (patch) | |
tree | bc2544d497b2dca7b2f5f8f1fbc704ed5f098b61 /framework | |
parent | ea9a90d83d92076d41abfd31a1fd3a5d84b6ba92 (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')
3 files changed, 8 insertions, 8 deletions
diff --git a/framework/source/uiconfiguration/uicategorydescription.cxx b/framework/source/uiconfiguration/uicategorydescription.cxx index d97b0fbdf7de..d82c24224ea6 100644 --- a/framework/source/uiconfiguration/uicategorydescription.cxx +++ b/framework/source/uiconfiguration/uicategorydescription.cxx @@ -122,8 +122,8 @@ ConfigurationAccess_UICategory::ConfigurationAccess_UICategory( const OUString& m_bCacheFilled( false ) { // Create configuration hierarchical access name - m_aConfigCategoryAccess += aModuleName; - m_aConfigCategoryAccess += CONFIGURATION_CATEGORY_ELEMENT_ACCESS; + m_aConfigCategoryAccess += aModuleName + + CONFIGURATION_CATEGORY_ELEMENT_ACCESS; m_xConfigProvider = theDefaultProvider::get( rxContext ); } diff --git a/framework/source/uiconfiguration/windowstateconfiguration.cxx b/framework/source/uiconfiguration/windowstateconfiguration.cxx index 966bdd7f3c70..1e6463996949 100644 --- a/framework/source/uiconfiguration/windowstateconfiguration.cxx +++ b/framework/source/uiconfiguration/windowstateconfiguration.cxx @@ -227,8 +227,8 @@ ConfigurationAccess_WindowState::ConfigurationAccess_WindowState( const OUString m_bModified( false ) { // Create configuration hierarchical access name - m_aConfigWindowAccess += aModuleName; - m_aConfigWindowAccess += "/UIElements/States"; + m_aConfigWindowAccess += aModuleName + + "/UIElements/States"; m_xConfigProvider = theDefaultProvider::get( rxContext ); // Initialize access array with property names. 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() |