diff options
author | David Tardon <dtardon@redhat.com> | 2015-03-01 16:17:56 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2015-03-01 17:33:55 +0100 |
commit | d170afda29bf4557df568732b1feba47f2c9439f (patch) | |
tree | c5f663b881b9b89e1027cbf8da5bd0670a48d0d5 /sfx2/source | |
parent | d70ab9974d161ff1acc2543f04a6c9431e8dff43 (diff) |
fix loop
Change-Id: I152f7bd7f528d0c485c11ba5e31e8678744a97fb
Diffstat (limited to 'sfx2/source')
-rw-r--r-- | sfx2/source/sidebar/Theme.cxx | 4 |
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()), |