summaryrefslogtreecommitdiff
path: root/configmgr
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 22:31:32 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 22:31:32 +0000
commitb938da48a5313a85dd9ce32cb0c05e822cd9da44 (patch)
treeb151f8a29d083df1c108ebe13235a2d91f006809 /configmgr
parent6de698d6b0dca5a54e103de2da9e4ed01b95df8c (diff)
INTEGRATION: CWS warnings01 (1.20.4); FILE MERGED
2005/11/09 18:02:42 pl 1.20.4.1: #i53898# removed warnings
Diffstat (limited to 'configmgr')
-rw-r--r--configmgr/source/treecache/disposetimer.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/configmgr/source/treecache/disposetimer.cxx b/configmgr/source/treecache/disposetimer.cxx
index 0e5e2cc0ccda..1dfcf6cd1817 100644
--- a/configmgr/source/treecache/disposetimer.cxx
+++ b/configmgr/source/treecache/disposetimer.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: disposetimer.cxx,v $
*
- * $Revision: 1.20 $
+ * $Revision: 1.21 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 04:24:36 $
+ * last change: $Author: hr $ $Date: 2006-06-19 23:31:32 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -354,12 +354,12 @@ void OTreeDisposeScheduler::implStartBefore(TimeStamp const& _aTime)
// should be called guarded only (m_aMutex must be locked)
TimeStamp OTreeDisposeScheduler::implAddTask(RequestOptions const& _aOptions, TimeStamp const& _aTime)
{
- typedef Agenda::value_type Task;
+ typedef Agenda::value_type AgendaType;
// try to insert after euivalent entries (but STL may ignore the hint)
Agenda::iterator where = m_aAgenda.upper_bound(_aTime);
- m_aAgenda.insert(where, Task(_aTime,_aOptions));
+ m_aAgenda.insert(where, AgendaType(_aTime,_aOptions));
OSL_ASSERT(!m_aAgenda.empty());