aboutsummaryrefslogtreecommitdiff
path: root/src/framework/Utilities
diff options
context:
space:
mode:
authormaximius <none@none>2009-10-17 16:20:24 -0700
committermaximius <none@none>2009-10-17 16:20:24 -0700
commit3f338cc1c328c7280957583b50598292cd8fb64b (patch)
treeca209c2cd024e3902b7844b3224bceff7c5bb570 /src/framework/Utilities
parente585187b248f48b3c6e9247b49fa07c6565d65e5 (diff)
*Massive cleanup redux.
--HG-- branch : trunk
Diffstat (limited to 'src/framework/Utilities')
-rw-r--r--src/framework/Utilities/EventProcessor.cpp2
-rw-r--r--src/framework/Utilities/LinkedList.h2
2 files changed, 1 insertions, 3 deletions
diff --git a/src/framework/Utilities/EventProcessor.cpp b/src/framework/Utilities/EventProcessor.cpp
index 852f84bc4e2..d3b8bd20d67 100644
--- a/src/framework/Utilities/EventProcessor.cpp
+++ b/src/framework/Utilities/EventProcessor.cpp
@@ -66,7 +66,7 @@ void EventProcessor::KillAllEvents(bool force)
m_aborting = true;
// first, abort all existing events
- for (EventList::iterator i = m_events.begin(); i != m_events.end();)
+ for (EventList::iterator i = m_events.begin(); i != m_events.end(); )
{
EventList::iterator i_old = i;
++i;
diff --git a/src/framework/Utilities/LinkedList.h b/src/framework/Utilities/LinkedList.h
index 171ff3601e3..12fa878d07f 100644
--- a/src/framework/Utilities/LinkedList.h
+++ b/src/framework/Utilities/LinkedList.h
@@ -145,7 +145,6 @@ class LinkedListHead
typedef _Ty& reference;
typedef _Ty const & const_reference;
-
Iterator() : _Ptr(0)
{ // construct with null node pointer
}
@@ -231,7 +230,6 @@ class LinkedListHead
return (_Ptr != &_Right);
}
-
pointer _Mynode()
{ // return node pointer
return (_Ptr);