From 6c705842d7165c73a678d7943e95ce1371f89514 Mon Sep 17 00:00:00 2001 From: Jens-Heiner Rechtien Date: Tue, 20 Jun 2006 03:11:25 +0000 Subject: 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. --- salhelper/inc/salhelper/queue.hxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'salhelper/inc') 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); -- cgit v1.2.3