commit 51e3b026b2f60b8f61f6e633344389b49985ab55
Author: Uwe Stöhr <[email protected]>
Date:   Sun May 17 01:28:06 2015 +0200

    GuiBox.cpp: a compile fix

diff --git a/src/frontends/qt4/GuiBox.cpp b/src/frontends/qt4/GuiBox.cpp
index 1d5c00d..ecc3746 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<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)));

Reply via email to