summaryrefslogtreecommitdiffstats
path: root/sfx2
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2015-03-01 16:17:56 +0100
committerDavid Tardon <dtardon@redhat.com>2015-03-01 17:33:55 +0100
commitd170afda29bf4557df568732b1feba47f2c9439f (patch)
treec5f663b881b9b89e1027cbf8da5bd0670a48d0d5 /sfx2
parentfix self-assignment (diff)
downloadcore-d170afda29bf4557df568732b1feba47f2c9439f.tar.gz
core-d170afda29bf4557df568732b1feba47f2c9439f.zip
fix loop
Change-Id: I152f7bd7f528d0c485c11ba5e31e8678744a97fb
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/sidebar/Theme.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/sidebar/Theme.cxx b/sfx2/source/sidebar/Theme.cxx
index e091ccbb240c..d4e13fab567e 100644
--- a/sfx2/source/sidebar/Theme.cxx
+++ b/sfx2/source/sidebar/Theme.cxx
@@ -397,8 +397,8 @@ void SAL_CALL Theme::disposing (void)
for (ChangeListeners::const_iterator
iContainer(maChangeListeners.begin()),
iContainerEnd(maChangeListeners.end());
- iContainerEnd!=iContainerEnd;
- ++iContainerEnd)
+ iContainer != iContainerEnd;
+ ++iContainer)
{
for (ChangeListenerContainer::const_iterator
iListener(iContainer->second.begin()),