summaryrefslogtreecommitdiff
path: root/fpicker/source/win32/filepicker/comptr.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'fpicker/source/win32/filepicker/comptr.hxx')
-rw-r--r--fpicker/source/win32/filepicker/comptr.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/fpicker/source/win32/filepicker/comptr.hxx b/fpicker/source/win32/filepicker/comptr.hxx
index 38e9f12d5415..a9ed6a60c07a 100644
--- a/fpicker/source/win32/filepicker/comptr.hxx
+++ b/fpicker/source/win32/filepicker/comptr.hxx
@@ -184,7 +184,7 @@ class ComPtr
#endif
- ::sal_Bool equals(IUnknown* pCheck)
+ sal_Bool equals(IUnknown* pCheck)
{
if (
( ! m_pInterface ) &&
@@ -195,14 +195,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);
}