summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-21 23:09:13 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-21 23:09:35 +0000
commit6e0823e3880e5ea26db868dbe0455e8c984744ab (patch)
treebc9caac47603f24a9f2439bd8f0bf99ee0b583f9 /cui
parentd36e60f6854c3226d4297fc3425ba010ed8f1038 (diff)
c++11ism
Change-Id: I54a32d1e07173e2cd5522e1b2e7ceff3b4f3378c
Diffstat (limited to 'cui')
-rw-r--r--cui/source/options/optgdlg.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/options/optgdlg.cxx b/cui/source/options/optgdlg.cxx
index 6b256d825a9b..3e4cdf57c5bd 100644
--- a/cui/source/options/optgdlg.cxx
+++ b/cui/source/options/optgdlg.cxx
@@ -608,8 +608,8 @@ OfaViewTabPage::OfaViewTabPage(Window* pParent, const SfxItemSet& rSet)
OUString(")");
m_pIconStyleLB->InsertEntry(entryForAuto);
- for (const vcl::IconThemeInfo& i : mInstalledIconThemes) {
- m_pIconStyleLB->InsertEntry(i.GetDisplayName());
+ for (std::vector<vcl::IconThemeInfo>::const_iterator aI = mInstalledIconThemes.begin(); aI != mInstalledIconThemes.end(); ++aI) {
+ m_pIconStyleLB->InsertEntry(aI->GetDisplayName());
}
// separate auto and other icon themes