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

Adam Treat treat at kde.org
Thu Oct 11 22:37:15 CEST 2007


SVN commit 724251 by treat:

* Rename this to go along with new design.


 A             cartesianrenderitem.cpp   vectorcurverenderitem.cpp#724188 [License: GPL (v2+)]
 A             cartesianrenderitem.h   vectorcurverenderitem.h#724188 [License: GPL (v2+)]
 M  +1 -1      curvedialog.cpp  
 M  +1 -1      equationdialog.cpp  
 M  +2 -2      libkstapp.pro  
 M  +2 -2      plotitem.cpp  
 D             vectorcurverenderitem.cpp  
 D             vectorcurverenderitem.h  


--- branches/work/kst/portto4/kst/src/libkstapp/curvedialog.cpp #724250:724251
@@ -20,7 +20,7 @@
 #include "tabwidget.h"
 #include "mainwindow.h"
 #include "application.h"
-#include "vectorcurverenderitem.h"
+#include "plotrenderitem.h"
 
 #include "defaultnames.h"
 #include "datacollection.h"
--- branches/work/kst/portto4/kst/src/libkstapp/equationdialog.cpp #724250:724251
@@ -17,7 +17,7 @@
 #include "dataobjectcollection.h"
 #include "equation.h"
 #include "plotitem.h"
-#include "vectorcurverenderitem.h"
+#include "plotrenderitem.h"
 #include "curve.h"
 #include "defaultnames.h"
 
--- branches/work/kst/portto4/kst/src/libkstapp/libkstapp.pro #724250:724251
@@ -26,6 +26,7 @@
     axis.cpp \
     boxitem.cpp \
     builtingraphics.cpp \
+    cartesianrenderitem.cpp \
     curvedialog.cpp \
     databutton.cpp \
     databuttonaction.cpp \
@@ -71,7 +72,6 @@
     tabwidget.cpp \
     vectordialog.cpp \
     vectoreditordialog.cpp \
-    vectorcurverenderitem.cpp \
     vectormodel.cpp \
     vectortablemodel.cpp \
     viewcommand.cpp \
@@ -88,6 +88,7 @@
     axis.h \
     boxitem.h \
     builtingraphics.h \
+    cartesianrenderitem.h \
     curvedialog.h \
     databutton.h \
     databuttonaction.h \
@@ -135,7 +136,6 @@
     vectordialog.h \
     vectoreditordialog.h \
     vectormodel.h \
-    vectorcurverenderitem.h \
     vectortablemodel.h \
     viewcommand.h \
     view.h \
--- branches/work/kst/portto4/kst/src/libkstapp/plotitem.cpp #724250:724251
@@ -23,7 +23,7 @@
 
 #include "datacollection.h"
 #include "dataobjectcollection.h"
-#include "vectorcurverenderitem.h"
+#include "cartesianrenderitem.h"
 
 #include <QDebug>
 
@@ -71,7 +71,7 @@
   switch (type) {
   case PlotRenderItem::Cartesian:
     {
-      VectorCurveRenderItem *renderItem = new VectorCurveRenderItem(this);
+      CartesianRenderItem *renderItem = new CartesianRenderItem(this);
       _renderers.insert(type, renderItem);
       return renderItem;
     }


More information about the Kst mailing list