From 51e3b026b2f60b8f61f6e633344389b49985ab55 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Uwe=20St=C3=B6hr?= Date: Sun, 17 May 2015 01:28:06 +0200 Subject: [PATCH] GuiBox.cpp: a compile fix --- src/frontends/qt4/GuiBox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))); -- 2.39.2