From: Uwe Stöhr Date: Sat, 16 May 2015 23:28:06 +0000 (+0200) Subject: GuiBox.cpp: a compile fix X-Git-Tag: 2.2.0alpha1~799 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=51e3b026b2f60b8f61f6e633344389b49985ab55;p=features.git GuiBox.cpp: a compile fix --- diff --git a/src/frontends/qt4/GuiBox.cpp b/src/frontends/qt4/GuiBox.cpp index 1d5c00d71c..ecc37466f5 100644 --- a/src/frontends/qt4/GuiBox.cpp +++ b/src/frontends/qt4/GuiBox.cpp @@ -172,7 +172,7 @@ void GuiBox::fillComboColor(QComboBox * combo, bool const is_none) if (is_none) combo->addItem(toqstr(translateIfPossible(lcolor.getGUIName(Color_none))), toqstr(lcolor.getLaTeXName(Color_none))); - typename QList::const_iterator cit = color_codes_.begin() + 1; + QList::const_iterator cit = color_codes_.begin() + 1; for (; cit != color_codes_.end(); ++cit) { QString const latexname = toqstr(lcolor.getLaTeXName(*cit)); QString const guiname = toqstr(translateIfPossible(lcolor.getGUIName(*cit)));