[Kst] branches/kst/hfi_calib/kst/kst
George Staikos
staikos at kde.org
Sat Mar 4 18:15:36 CET 2006
SVN commit 515702 by staikos:
remove memory saving to avoid Qt 3.3.5 crash
M +3 -3 kst2dplot.cpp
--- branches/kst/hfi_calib/kst/kst/kst2dplot.cpp #515701:515702
@@ -89,7 +89,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;
@@ -140,7 +140,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;
@@ -414,7 +414,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