diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 03:11:25 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 03:11:25 +0000 |
commit | 6c705842d7165c73a678d7943e95ce1371f89514 (patch) | |
tree | 4dcf4e9bf96cf43212e5a2c5d05bef420493df92 /salhelper/inc | |
parent | d38e6cd08f7e5b4e879674a4015cb4cb9e82b36e (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/inc')
-rw-r--r-- | salhelper/inc/salhelper/queue.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/salhelper/inc/salhelper/queue.hxx b/salhelper/inc/salhelper/queue.hxx index ea7964dd02da..f2b01106e006 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); |