summaryrefslogtreecommitdiff
path: root/desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2012-04-05 21:15:13 +0200
committerJulien Nabet <serval2412@yahoo.fr>2012-04-05 21:17:09 +0200
commit7d2508572a0389bcb1c803911024296f411af653 (patch)
treecfa0f95bf150c77b763908e77fc422ce6efc2a28 /desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx
parent7a56eef989b828c495d34c34de99d1b863f223e2 (diff)
Fix Prefer prefix ++/-- operators
Includes too replacement < by != for comparison between current and end iterators
Diffstat (limited to 'desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx')
-rw-r--r--desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx b/desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx
index 8852e939c40d..80236785d8ae 100644
--- a/desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx
+++ b/desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx
@@ -424,7 +424,7 @@ void UpdateInstallDialog::Thread::downloadExtensions()
//Construct a string of all messages contained in the exceptions plus the respective download URLs
::rtl::OUStringBuffer buf(256);
typedef ::std::vector< ::std::pair<OUString, cssu::Exception > >::const_iterator CIT;
- for (CIT j = vecExceptions.begin(); j != vecExceptions.end(); j++)
+ for (CIT j = vecExceptions.begin(); j != vecExceptions.end(); ++j)
{
if (j != vecExceptions.begin())
buf.appendAscii("\n");