summaryrefslogtreecommitdiff
path: root/sw
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 /sw
parentaa7dc5fa1df23f1a9079305cb362aab018e94848 (diff)
Drop gratuitous initial :: from comphelper::ProfileZone
Change-Id: Iae7d86b857d0563d9ed9d9b4187e009554698412
Diffstat (limited to 'sw')
-rw-r--r--sw/source/core/unocore/unodraw.cxx2
-rw-r--r--sw/source/core/unocore/unoobj.cxx4
-rw-r--r--sw/source/core/unocore/unotext.cxx6
-rw-r--r--sw/source/uibase/uno/unotxvw.cxx10
4 files changed, 11 insertions, 11 deletions
diff --git a/sw/source/core/unocore/unodraw.cxx b/sw/source/core/unocore/unodraw.cxx
index 8d7a73882c7a..6a6da5c57d9e 100644
--- a/sw/source/core/unocore/unodraw.cxx
+++ b/sw/source/core/unocore/unodraw.cxx
@@ -2339,7 +2339,7 @@ awt::Size SAL_CALL SwXShape::getSize()
void SAL_CALL SwXShape::setSize( const awt::Size& aSize )
{
- ::comphelper::ProfileZone aZone("SwXShape::setSize");
+ comphelper::ProfileZone aZone("SwXShape::setSize");
if ( mxShape.is() )
{
diff --git a/sw/source/core/unocore/unoobj.cxx b/sw/source/core/unocore/unoobj.cxx
index 76f4d3e3b15d..d10454243088 100644
--- a/sw/source/core/unocore/unoobj.cxx
+++ b/sw/source/core/unocore/unoobj.cxx
@@ -962,7 +962,7 @@ void SAL_CALL
SwXTextCursor::gotoStart(sal_Bool Expand)
{
SolarMutexGuard aGuard;
- ::comphelper::ProfileZone aZone("gotoStart");
+ comphelper::ProfileZone aZone("gotoStart");
SwUnoCursor & rUnoCursor( m_pImpl->GetCursorOrThrow() );
@@ -1019,7 +1019,7 @@ void SAL_CALL
SwXTextCursor::gotoEnd(sal_Bool Expand)
{
SolarMutexGuard aGuard;
- ::comphelper::ProfileZone aZone("gotoEnd");
+ comphelper::ProfileZone aZone("gotoEnd");
SwUnoCursor & rUnoCursor( m_pImpl->GetCursorOrThrow() );
diff --git a/sw/source/core/unocore/unotext.cxx b/sw/source/core/unocore/unotext.cxx
index 12f5100ca9cc..09b2641a1dca 100644
--- a/sw/source/core/unocore/unotext.cxx
+++ b/sw/source/core/unocore/unotext.cxx
@@ -284,7 +284,7 @@ SwXText::insertString(const uno::Reference< text::XTextRange >& xTextRange,
const OUString& rString, sal_Bool bAbsorb)
{
SolarMutexGuard aGuard;
- ::comphelper::ProfileZone aZone("SwXText::insertString");
+ comphelper::ProfileZone aZone("SwXText::insertString");
if (!xTextRange.is())
{
@@ -501,7 +501,7 @@ SwXText::insertTextContent(
sal_Bool bAbsorb)
{
SolarMutexGuard aGuard;
- ::comphelper::ProfileZone aZone("SwXText::insertTextContent");
+ comphelper::ProfileZone aZone("SwXText::insertTextContent");
if (!xRange.is())
{
@@ -851,7 +851,7 @@ uno::Reference< text::XText > SAL_CALL
SwXText::getText()
{
SolarMutexGuard aGuard;
- ::comphelper::ProfileZone aZone("SwXText::getText");
+ comphelper::ProfileZone aZone("SwXText::getText");
const uno::Reference< text::XText > xRet(this);
return xRet;
diff --git a/sw/source/uibase/uno/unotxvw.cxx b/sw/source/uibase/uno/unotxvw.cxx
index f6c0c463483f..8681e73c21fe 100644
--- a/sw/source/uibase/uno/unotxvw.cxx
+++ b/sw/source/uibase/uno/unotxvw.cxx
@@ -481,7 +481,7 @@ void SAL_CALL SwXTextView::setFormDesignMode( sal_Bool DesignMode )
uno::Reference< text::XTextViewCursor > SwXTextView::getViewCursor()
{
SolarMutexGuard aGuard;
- ::comphelper::ProfileZone aZone("getViewCursor");
+ comphelper::ProfileZone aZone("getViewCursor");
if(GetView())
{
if(!mxTextViewCursor.is())
@@ -1140,7 +1140,7 @@ void SwXTextViewCursor::gotoRange(
void SwXTextViewCursor::gotoStart(sal_Bool bExpand)
{
SolarMutexGuard aGuard;
- ::comphelper::ProfileZone aZone("SwXTextViewCursor::gotoStart");
+ comphelper::ProfileZone aZone("SwXTextViewCursor::gotoStart");
if(m_pView)
{
if (!IsTextSelection())
@@ -1155,7 +1155,7 @@ void SwXTextViewCursor::gotoStart(sal_Bool bExpand)
void SwXTextViewCursor::gotoEnd(sal_Bool bExpand)
{
SolarMutexGuard aGuard;
- ::comphelper::ProfileZone aZone("SwXTextViewCursor::gotoEnd");
+ comphelper::ProfileZone aZone("SwXTextViewCursor::gotoEnd");
if(m_pView)
{
if (!IsTextSelection())
@@ -1551,7 +1551,7 @@ Any SwXTextViewCursor::getPropertyDefault( const OUString& rPropertyName )
sal_Bool SwXTextViewCursor::goDown(sal_Int16 nCount, sal_Bool bExpand)
{
SolarMutexGuard aGuard;
- ::comphelper::ProfileZone aZone("SwXTextViewCursor::goDown");
+ comphelper::ProfileZone aZone("SwXTextViewCursor::goDown");
bool bRet = false;
if(m_pView)
{
@@ -1568,7 +1568,7 @@ sal_Bool SwXTextViewCursor::goDown(sal_Int16 nCount, sal_Bool bExpand)
sal_Bool SwXTextViewCursor::goUp(sal_Int16 nCount, sal_Bool bExpand)
{
SolarMutexGuard aGuard;
- ::comphelper::ProfileZone aZone("SwXTextViewCursor::goUp");
+ comphelper::ProfileZone aZone("SwXTextViewCursor::goUp");
bool bRet = false;
if(m_pView)
{