[Kst] extragear/graphics/kst/src/libkstapp

George Staikos staikos at kde.org
Sat Mar 4 18:14:43 CET 2006


SVN commit 515700 by staikos:

apparently trying to save memory is causing problems with Qt 3.3.5.  In the big
picture I guess it doesn't help that much anyway.


 M  +3 -3      kst2dplot.cpp  


--- trunk/extragear/graphics/kst/src/libkstapp/kst2dplot.cpp #515699:515700
@@ -90,7 +90,7 @@
                  KstScaleModeType xscale_in,
                  double xmin_in, double ymin_in,
                  double xmax_in, double ymax_in)
-: KstPlotBase("Kst2DPlot"), _buffer(8) {
+: KstPlotBase("Kst2DPlot") {
   // must stay here for plot loading correctness
   _pos_x = 0.0;
   _pos_y = 0.0;
@@ -141,7 +141,7 @@
 
 
 Kst2DPlot::Kst2DPlot(const QDomElement& e)
-: KstPlotBase(e), _buffer(8) {
+: KstPlotBase(e) {
   QString in_tag = "unknown";
   KstScaleModeType yscale_in = AUTOBORDER, xscale_in = AUTO;
   double xmin_in = 0, ymin_in = 0, xmax_in = 1, ymax_in = 1;
@@ -415,7 +415,7 @@
 // FIXME: broken copy constructor
 // what is broken?
 Kst2DPlot::Kst2DPlot(const Kst2DPlot& plot, const QString& name)
-: KstPlotBase(plot), _buffer(8) {
+: KstPlotBase(plot) {
   QString plotName;
 
   _type = "Plot";


More information about the Kst mailing list