summaryrefslogtreecommitdiff
path: root/include/systools
diff options
context:
space:
mode:
Diffstat (limited to 'include/systools')
-rw-r--r--include/systools/win32/comptr.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/systools/win32/comptr.hxx b/include/systools/win32/comptr.hxx
index 417796e8f4bb..5e5b6b6886c1 100644
--- a/include/systools/win32/comptr.hxx
+++ b/include/systools/win32/comptr.hxx
@@ -197,7 +197,7 @@ class ComPtr
}
- ::sal_Bool equals(IUnknown* pCheck)
+ sal_Bool equals(IUnknown* pCheck)
{
if (
( ! m_pInterface ) &&
@@ -208,14 +208,14 @@ class ComPtr
IUnknown* pCurrent = NULL;
m_pInterface->QueryInterface(IID_IUnknown, (void**)&pCurrent);
- ::sal_Bool bEquals = (pCheck == pCurrent);
+ sal_Bool bEquals = (pCheck == pCurrent);
pCurrent->Release();
return bEquals;
}
- ::sal_Bool is()
+ sal_Bool is()
{
return (m_pInterface != 0);
}