Kaydet (Commit) 6e0823e3 authored tarafından Caolán McNamara's avatar Caolán McNamara

c++11ism

Change-Id: I54a32d1e07173e2cd5522e1b2e7ceff3b4f3378c
üst d36e60f6
...@@ -608,8 +608,8 @@ OfaViewTabPage::OfaViewTabPage(Window* pParent, const SfxItemSet& rSet) ...@@ -608,8 +608,8 @@ OfaViewTabPage::OfaViewTabPage(Window* pParent, const SfxItemSet& rSet)
OUString(")"); OUString(")");
m_pIconStyleLB->InsertEntry(entryForAuto); m_pIconStyleLB->InsertEntry(entryForAuto);
for (const vcl::IconThemeInfo& i : mInstalledIconThemes) { for (std::vector<vcl::IconThemeInfo>::const_iterator aI = mInstalledIconThemes.begin(); aI != mInstalledIconThemes.end(); ++aI) {
m_pIconStyleLB->InsertEntry(i.GetDisplayName()); m_pIconStyleLB->InsertEntry(aI->GetDisplayName());
} }
// separate auto and other icon themes // separate auto and other icon themes
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment