summaryrefslogtreecommitdiff
path: root/include/tools/weakbase.h
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2013-06-29 23:57:38 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2013-06-30 04:58:49 +0000
commit710f41b7aec8e7d35a0da8be332aa289f98942af (patch)
treeb894ef2d3f06a63a85f423b2713a654ea57f9c69 /include/tools/weakbase.h
parent1ca3beae12a7f222c987481e07a544845fc9fd46 (diff)
Clean String and sal_Bool in tools
Change-Id: I6a92196f33d7a5278c7dcc426112e9c56d582655 Reviewed-on: https://gerrit.libreoffice.org/4627 Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com> Tested-by: Norbert Thiebaud <nthiebaud@gmail.com>
Diffstat (limited to 'include/tools/weakbase.h')
-rw-r--r--include/tools/weakbase.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/tools/weakbase.h b/include/tools/weakbase.h
index a4ce1d0962e8..d37a3fd98ce3 100644
--- a/include/tools/weakbase.h
+++ b/include/tools/weakbase.h
@@ -95,19 +95,19 @@ public:
inline reference_type * operator->() const;
/** returns true if this instance references pReferenceObject */
- inline sal_Bool operator== (const reference_type * pReferenceObject) const;
+ inline bool operator== (const reference_type * pReferenceObject) const;
/** returns true if this instance and the given weakref reference the same object */
- inline sal_Bool operator== (const WeakReference<reference_type> & handle) const;
+ inline bool operator== (const WeakReference<reference_type> & handle) const;
/** only needed for using this class with stl containers */
- inline sal_Bool operator!= (const WeakReference<reference_type> & handle) const;
+ inline bool operator!= (const WeakReference<reference_type> & handle) const;
/** only needed for using this class with stl containers */
- inline sal_Bool operator< (const WeakReference<reference_type> & handle) const;
+ inline bool operator< (const WeakReference<reference_type> & handle) const;
/** only needed for using this class with stl containers */
- inline sal_Bool operator> (const WeakReference<reference_type> & handle) const;
+ inline bool operator> (const WeakReference<reference_type> & handle) const;
/** the assignment operator */
inline WeakReference<reference_type>& operator= (const WeakReference<reference_type> & handle);