summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
Diffstat (limited to 'framework')
-rw-r--r--framework/source/uiconfiguration/uicategorydescription.cxx4
-rw-r--r--framework/source/uiconfiguration/windowstateconfiguration.cxx4
-rw-r--r--framework/source/uielement/uicommanddescription.cxx8
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()