[Kst] extragear/graphics/kst/kst

George Staikos staikos at kde.org
Sun Nov 6 21:06:30 CET 2005


SVN commit 478446 by staikos:

fix label parser bug


 M  +3 -1      labelparser.cpp  


--- trunk/extragear/graphics/kst/kst/labelparser.cpp #478445:478446
@@ -29,7 +29,9 @@
   if (parent) {  // attach and inherit
     switch (vOffset) {
       case None:
-        assert(!parent->next);
+        while (parent->next) {
+          parent = parent->next;
+        }
         parent->next = this;
         break;
       case Up:


More information about the Kst mailing list