[Marble-commits] KDE/kdeedu/marble/src

Dennis Nienhüser earthwings at gentoo.org
Fri Oct 9 19:17:46 CEST 2009


SVN commit 1033194 by nienhueser:

Compile (variable defined twice)

 M  +2 -2      QtMainWindow.cpp  


--- trunk/KDE/kdeedu/marble/src/QtMainWindow.cpp #1033193:1033194
@@ -260,8 +260,8 @@
 
 //    FIXME: Discuss if this is the best place to put this
     QList<RenderPlugin *>::const_iterator it = pluginList.constBegin();
-    QList<RenderPlugin *>::const_iterator const end = pluginList.constEnd();
-    for (; it != end; ++it ) {
+    QList<RenderPlugin *>::const_iterator const listEnd = pluginList.constEnd();
+    for (; it != listEnd; ++it ) {
         connect( (*it), SIGNAL( actionGroupsChanged() ),
                  this, SLOT( createPluginMenus() ) );
     }


More information about the Marble-commits mailing list