summaryrefslogtreecommitdiff
path: root/svx/source
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2017-08-25 16:09:53 +0300
committerTor Lillqvist <tml@collabora.com>2017-08-25 16:09:53 +0300
commit27bde9a6abf6c73d5345b0a85b81afc8470d25cf (patch)
treee5bab0d5ca835e8e74b030069cec30877cd181e0 /svx/source
parentaa7dc5fa1df23f1a9079305cb362aab018e94848 (diff)
Drop gratuitous initial :: from comphelper::ProfileZone
Change-Id: Iae7d86b857d0563d9ed9d9b4187e009554698412
Diffstat (limited to 'svx/source')
-rw-r--r--svx/source/unodraw/UnoNameItemTable.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/unodraw/UnoNameItemTable.cxx b/svx/source/unodraw/UnoNameItemTable.cxx
index 64c2947d5df7..aad9ddc5949d 100644
--- a/svx/source/unodraw/UnoNameItemTable.cxx
+++ b/svx/source/unodraw/UnoNameItemTable.cxx
@@ -93,7 +93,7 @@ void SAL_CALL SvxUnoNameItemTable::ImplInsertByName( const OUString& aName, cons
void SAL_CALL SvxUnoNameItemTable::insertByName( const OUString& aApiName, const uno::Any& aElement )
{
SolarMutexGuard aGuard;
- ::comphelper::ProfileZone aZone("SvxUnoNameItemTable::insertByName");
+ comphelper::ProfileZone aZone("SvxUnoNameItemTable::insertByName");
if( hasByName( aApiName ) )
throw container::ElementExistException();
@@ -107,7 +107,7 @@ void SAL_CALL SvxUnoNameItemTable::insertByName( const OUString& aApiName, const
void SAL_CALL SvxUnoNameItemTable::removeByName( const OUString& aApiName )
{
SolarMutexGuard aGuard;
- ::comphelper::ProfileZone aZone("SvxUnoNameItemTable::removeByName");
+ comphelper::ProfileZone aZone("SvxUnoNameItemTable::removeByName");
// a little quickfix for 2.0 to let applications clear api
// created items that are not used
@@ -193,7 +193,7 @@ void SAL_CALL SvxUnoNameItemTable::replaceByName( const OUString& aApiName, cons
uno::Any SAL_CALL SvxUnoNameItemTable::getByName( const OUString& aApiName )
{
SolarMutexGuard aGuard;
- ::comphelper::ProfileZone aZone("SvxUnoNameItemTable::getByName");
+ comphelper::ProfileZone aZone("SvxUnoNameItemTable::getByName");
OUString aName = SvxUnogetInternalNameForItem(mnWhich, aApiName);