summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/app/AppController.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'dbaccess/source/ui/app/AppController.cxx')
-rw-r--r--dbaccess/source/ui/app/AppController.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/ui/app/AppController.cxx b/dbaccess/source/ui/app/AppController.cxx
index 7e705ae668aa..cbd9b18b1bae 100644
--- a/dbaccess/source/ui/app/AppController.cxx
+++ b/dbaccess/source/ui/app/AppController.cxx
@@ -1587,7 +1587,7 @@ void SAL_CALL OApplicationController::elementRemoved( const ContainerEvent& _rEv
Reference<XContent> xContent(xContainer,UNO_QUERY);
if ( xContent.is() )
{
- sName = xContent->getIdentifier()->getContentIdentifier() + OUString("/") + sName;
+ sName = xContent->getIdentifier()->getContentIdentifier() + "/" + sName;
}
}
break;
@@ -1631,7 +1631,7 @@ void SAL_CALL OApplicationController::elementReplaced( const ContainerEvent& _rE
Reference<XContent> xContent(xContainer,UNO_QUERY);
if ( xContent.is() )
{
- sName = xContent->getIdentifier()->getContentIdentifier() + OUString("/") + sName;
+ sName = xContent->getIdentifier()->getContentIdentifier() + "/" + sName;
}
}
break;