]> git.lyx.org Git - features.git/commitdiff
GuiBox.cpp: a compile fix
authorUwe Stöhr <uwestoehr@lyx.org>
Sat, 16 May 2015 23:28:06 +0000 (01:28 +0200)
committerUwe Stöhr <uwestoehr@lyx.org>
Sat, 16 May 2015 23:28:06 +0000 (01:28 +0200)
src/frontends/qt4/GuiBox.cpp

index 1d5c00d71ca1fe98b5578cb26335c325cbea3a84..ecc37466f573e9577ef8eebb1646f07b5f7ff3fe 100644 (file)
@@ -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<ColorCode>::const_iterator cit = color_codes_.begin() + 1;
+       QList<ColorCode>::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)));