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

Adam Treat treat at kde.org
Fri Feb 16 21:51:41 CET 2007


SVN commit 634308 by treat:

* Q3TextStream -> QTextStream


 M  +1 -1      kstbasecurve.h  
 M  +1 -1      kstbasicplugin.cpp  
 M  +1 -1      kstbasicplugin.h  
 M  +1 -1      kstcplugin.cpp  
 M  +1 -1      kstcplugin.h  
 M  +1 -1      kstcsd.cpp  
 M  +1 -1      kstcsd.h  
 M  +1 -1      kstdataobject.cpp  
 M  +1 -1      kstdataobject.h  
 M  +1 -1      kstequation.cpp  
 M  +1 -1      kstequation.h  
 M  +1 -1      ksthistogram.cpp  
 M  +1 -1      ksthistogram.h  
 M  +1 -1      kstimage.cpp  
 M  +1 -1      kstimage.h  
 M  +1 -1      kstpsd.cpp  
 M  +1 -1      kstpsd.h  
 M  +1 -1      kstvcurve.cpp  
 M  +1 -1      kstvcurve.h  


--- branches/work/kst/portto4/kst/src/libkstmath/kstbasecurve.h #634307:634308
@@ -65,7 +65,7 @@
 
     virtual void showNewDialog() { }
     virtual void showEditDialog() { }
-    virtual void save(Q3TextStream &ts, const QString& indent = QString::null) = 0;
+    virtual void save(QTextStream &ts, const QString& indent = QString::null) = 0;
     virtual QString propertyString() const = 0;
 
     virtual KstCurveType curveType() const = 0;
--- branches/work/kst/portto4/kst/src/libkstmath/kstbasicplugin.cpp #634307:634308
@@ -339,7 +339,7 @@
 }
 
 
-void KstBasicPlugin::save(Q3TextStream& ts, const QString& indent) {
+void KstBasicPlugin::save(QTextStream& ts, const QString& indent) {
   QString l2 = indent + "  ";
   //The plugin name _must_ be the same as the entry in the .desktop file
   ts << indent << "<plugin name=\"" << propertyString() << "\">" << endl;
--- branches/work/kst/portto4/kst/src/libkstmath/kstbasicplugin.h #634307:634308
@@ -79,7 +79,7 @@
 
     //Regular virtual methods from KstDataObject
     void load(const QDomElement &e);
-    void save(Q3TextStream& ts, const QString& indent = QString::null);
+    void save(QTextStream& ts, const QString& indent = QString::null);
 
     bool isFit() const { return _isFit; }
     // FIXME: remove this
--- branches/work/kst/portto4/kst/src/libkstmath/kstcplugin.cpp #634307:634308
@@ -470,7 +470,7 @@
 }
 
 
-void KstCPlugin::save(Q3TextStream &ts, const QString& indent) {
+void KstCPlugin::save(QTextStream &ts, const QString& indent) {
   if (!_plugin) {
     return;
   }
--- branches/work/kst/portto4/kst/src/libkstmath/kstcplugin.h #634307:634308
@@ -38,7 +38,7 @@
 
     virtual UpdateType update(int update_counter);
 
-    virtual void save(Q3TextStream &ts, const QString& indent = QString::null);
+    virtual void save(QTextStream &ts, const QString& indent = QString::null);
 
     virtual bool slaveVectorsUsed() const;
     virtual bool isValid() const;
--- branches/work/kst/portto4/kst/src/libkstmath/kstcsd.cpp #634307:634308
@@ -229,7 +229,7 @@
   return setLastUpdateResult(UPDATE);
 }
 
-void KstCSD::save(Q3TextStream &ts, const QString& indent) {
+void KstCSD::save(QTextStream &ts, const QString& indent) {
   QString l2 = indent + "  ";
   ts << indent << "<csdobject>" << endl;
   ts << l2 << "<tag>" << Q3StyleSheet::escape(tagName()) << "</tag>" << endl;
--- branches/work/kst/portto4/kst/src/libkstmath/kstcsd.h #634307:634308
@@ -37,7 +37,7 @@
 
     virtual UpdateType update(int update_counter = -1);
 
-    virtual void save(Q3TextStream& ts, const QString& indent = QString::null);
+    virtual void save(QTextStream& ts, const QString& indent = QString::null);
     virtual QString propertyString() const;
     
     QString vTag() const;
--- branches/work/kst/portto4/kst/src/libkstmath/kstdataobject.cpp #634307:634308
@@ -194,7 +194,7 @@
 }
 
 
-void KstDataObject::save(Q3TextStream& ts, const QString& indent) {
+void KstDataObject::save(QTextStream& ts, const QString& indent) {
   Q_UNUSED(ts)
   Q_UNUSED(indent)
 }
--- branches/work/kst/portto4/kst/src/libkstmath/kstdataobject.h #634307:634308
@@ -83,7 +83,7 @@
     KstMatrixMap& outputMatrices() { return _outputMatrices; }
 
     virtual void load(const QDomElement& e);
-    virtual void save(Q3TextStream& ts, const QString& indent = QString::null);
+    virtual void save(QTextStream& ts, const QString& indent = QString::null);
 
     virtual bool loadInputs();
 
--- branches/work/kst/portto4/kst/src/libkstmath/kstequation.cpp #634307:634308
@@ -230,7 +230,7 @@
 }
 
 
-void KstEquation::save(Q3TextStream &ts, const QString& indent) {
+void KstEquation::save(QTextStream &ts, const QString& indent) {
   QString l2 = indent + "  ";
   ts << indent << "<equationobject>" << endl;
   ts << l2 << "<tag>" << Q3StyleSheet::escape(tag().tagString()) << "</tag>" << endl;
--- branches/work/kst/portto4/kst/src/libkstmath/kstequation.h #634307:634308
@@ -39,7 +39,7 @@
 
     virtual UpdateType update(int update_counter = -1);
 
-    virtual void save(Q3TextStream &ts, const QString& indent = QString::null);
+    virtual void save(QTextStream &ts, const QString& indent = QString::null);
     virtual QString propertyString() const;
 
     /** equations used to edit the vector */
--- branches/work/kst/portto4/kst/src/libkstmath/ksthistogram.cpp #634307:634308
@@ -347,7 +347,7 @@
 }
 
 
-void KstHistogram::save(Q3TextStream &ts, const QString& indent) {
+void KstHistogram::save(QTextStream &ts, const QString& indent) {
   // FIXME: clean this up - all lower case nodes, maybe save points in the
   // point class itself, etc
   QString l2 = indent + "  ";
--- branches/work/kst/portto4/kst/src/libkstmath/ksthistogram.h #634307:634308
@@ -37,7 +37,7 @@
   virtual ~KstHistogram();
 
   virtual UpdateType update(int update_counter = -1);
-  virtual void save(Q3TextStream &ts, const QString& indent = QString::null);
+  virtual void save(QTextStream &ts, const QString& indent = QString::null);
   virtual QString propertyString() const;
 
   int nBins() const;
--- branches/work/kst/portto4/kst/src/libkstmath/kstimage.cpp #634307:634308
@@ -176,7 +176,7 @@
 }
 
 
-void KstImage::save(Q3TextStream &ts, const QString& indent) {
+void KstImage::save(QTextStream &ts, const QString& indent) {
   QString l2 = indent + "  ";
   ts << indent << "<image>" << endl;
   ts << l2 << "<tag>" << Q3StyleSheet::escape(tagName()) << "</tag>" << endl;
--- branches/work/kst/portto4/kst/src/libkstmath/kstimage.h #634307:634308
@@ -51,7 +51,7 @@
 
     virtual void showNewDialog();
     virtual void showEditDialog();
-    virtual void save(Q3TextStream &ts, const QString& indent = QString::null);
+    virtual void save(QTextStream &ts, const QString& indent = QString::null);
     virtual UpdateType update(int update_counter = -1);
     virtual QString propertyString() const;
 
--- branches/work/kst/portto4/kst/src/libkstmath/kstpsd.cpp #634307:634308
@@ -268,7 +268,7 @@
   }
 }
 
-void KstPSD::save(Q3TextStream &ts, const QString& indent) {
+void KstPSD::save(QTextStream &ts, const QString& indent) {
   QString l2 = indent + "  ";
   ts << indent << "<psdobject>" << endl;
   ts << l2 << "<tag>" << Q3StyleSheet::escape(tagName()) << "</tag>" << endl;
--- branches/work/kst/portto4/kst/src/libkstmath/kstpsd.h #634307:634308
@@ -37,7 +37,7 @@
 
     virtual UpdateType update(int update_counter = -1);
 
-    virtual void save(Q3TextStream& ts, const QString& indent = QString::null);
+    virtual void save(QTextStream& ts, const QString& indent = QString::null);
     virtual QString propertyString() const;
     
     bool apodize() const;
--- branches/work/kst/portto4/kst/src/libkstmath/kstvcurve.cpp #634307:634308
@@ -467,7 +467,7 @@
 }
 
 
-void KstVCurve::save(Q3TextStream &ts, const QString& indent) {
+void KstVCurve::save(QTextStream &ts, const QString& indent) {
   QString l2 = indent + "  ";
   ts << indent << "<curve>" << endl;
   ts << l2 << "<tag>" << Q3StyleSheet::escape(tagName()) << "</tag>" << endl;
--- branches/work/kst/portto4/kst/src/libkstmath/kstvcurve.h #634307:634308
@@ -71,7 +71,7 @@
     void setYMinusError(KstVectorPtr new_ey);
 
     /** Save curve information */
-    void save(Q3TextStream &ts, const QString& indent = QString::null);
+    void save(QTextStream &ts, const QString& indent = QString::null);
 
     QString xLabel() const;
     QString yLabel() const;


More information about the Kst mailing list