[Kst] branches/work/kst/portto4-objectstore/kst/src/libkst

Eli Fidler eli at staikos.net
Thu Oct 18 22:09:02 CEST 2007


SVN commit 726759 by fidler:

fix symbol collision in VC++


 M  +4 -4      objectstore.cpp  


--- branches/work/kst/portto4-objectstore/kst/src/libkst/objectstore.cpp #726758:726759
@@ -561,10 +561,10 @@
     }
   }
 
-  QHashIterator<int, ObjectTreeNode*> i(nodes);
-  while (i.hasNext()) {
-    i.next();
-    outNodes << i.value();
+  QHashIterator<int, ObjectTreeNode*> hi(nodes);
+  while (hi.hasNext()) {
+    hi.next();
+    outNodes << hi.value();
   }
   return outNodes;
 }


More information about the Kst mailing list