summaryrefslogtreecommitdiff
path: root/salhelper
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 03:11:25 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 03:11:25 +0000
commit6d5d495f09b34e51ae5ec93bf36d12a067d53d6a (patch)
tree2ae85fc56583b1820812099e7f49e395b0f765a5 /salhelper
parent19c9475ed1d6a71c5c0c537117cdbdaa5ed14a01 (diff)
INTEGRATION: CWS warnings01 (1.2.4); FILE MERGED
2005/09/23 00:28:32 sb 1.2.4.2: RESYNC: (1.2-1.3); FILE MERGED 2005/08/29 14:06:06 sb 1.2.4.1: #i53898# Made code warning-free.
Diffstat (limited to 'salhelper')
-rw-r--r--salhelper/inc/salhelper/queue.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/salhelper/inc/salhelper/queue.hxx b/salhelper/inc/salhelper/queue.hxx
index ea7964dd0..f2b01106e 100644
--- a/salhelper/inc/salhelper/queue.hxx
+++ b/salhelper/inc/salhelper/queue.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: queue.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 16:59:12 $
+ * last change: $Author: hr $ $Date: 2006-06-20 04:11:25 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -82,7 +82,7 @@ public:
inline ~QueueBase()
{
- erase (begin(), end());
+ erase (this->begin(), this->end());
}
inline void put (const element_type& element)
@@ -96,10 +96,10 @@ public:
element_type element;
osl::MutexGuard aGuard (m_aMutex);
- if (!empty())
+ if (!this->empty())
{
- element = front();
- pop_front();
+ element = this->front();
+ this->pop_front();
}
return (element);