diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2014-07-27 00:08:29 -0500 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2014-07-27 00:08:29 -0500 |
commit | a1e8addae51d3f8a026630b47b0c42c11cd52507 (patch) | |
tree | dd42576bdce387ca1bd83b280ab5bbb34e0c15a7 /src/notifications.cpp | |
parent | fcd77b806a8826d5f694f78c63943d0f768ef6ec (diff) | |
download | ayatana-indicator-datetime-a1e8addae51d3f8a026630b47b0c42c11cd52507.tar.gz ayatana-indicator-datetime-a1e8addae51d3f8a026630b47b0c42c11cd52507.tar.bz2 ayatana-indicator-datetime-a1e8addae51d3f8a026630b47b0c42c11cd52507.zip |
copyediting
Diffstat (limited to 'src/notifications.cpp')
-rw-r--r-- | src/notifications.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/notifications.cpp b/src/notifications.cpp index 41ced42..486a910 100644 --- a/src/notifications.cpp +++ b/src/notifications.cpp @@ -160,7 +160,7 @@ public: // close() removes the item from m_notifications, // so increment the iterator before it gets invalidated - for (auto it=m_notifications.begin(), end=m_notifications.end(); it!=end; ) + for (auto it=m_notifications.begin(), e=m_notifications.end(); it!=e; ) { const int key = it->first; ++it; |