[Kst] branches/work/kst/hierarchy/kst/src/libkstapp

Eli Fidler eli at staikos.net
Mon Dec 18 20:47:36 CET 2006


SVN commit 614747 by fidler:

set display tags of new vectors and matrices properly


 M  +1 -1      kstmatrixdialog_i.cpp  
 M  +2 -1      kstvectordialog_i.cpp  


--- branches/work/kst/hierarchy/kst/src/libkstapp/kstmatrixdialog_i.cpp #614746:614747
@@ -330,7 +330,7 @@
   int skip = _w->_skip->value();
 
   KstRMatrixPtr matrix = new KstRMatrix(file, pField,
-                                        KstObjectTag(tag_name, file->tag()),
+                                        KstObjectTag(tag_name, file->tag(), false),
                                         xStart, yStart, xNumSteps, yNumSteps,
                                         doAve, doSkip, skip);
   emit matrixCreated(KstMatrixPtr(matrix));
--- branches/work/kst/hierarchy/kst/src/libkstapp/kstvectordialog_i.cpp #614746:614747
@@ -383,7 +383,8 @@
 
     /* create the vector */
     KstRVectorPtr vector = new KstRVector(
-        file, _w->Field->currentText(), KstObjectTag(tag_name, file->tag()),
+        file, _w->Field->currentText(),
+        KstObjectTag(tag_name, file->tag(), false),
         _w->_kstDataRange->CountFromEnd->isChecked() ? -1 : f0,
         _w->_kstDataRange->ReadToEnd->isChecked() ? -1 : n,
         _w->_kstDataRange->Skip->value(),


More information about the Kst mailing list