[Kst] branches/work/kst/portto4/kst/src/datasources/ascii

Peter Kümmel syntheticpp at gmx.net
Tue Jul 27 12:24:19 CEST 2010


SVN commit 1155428 by kuemmel:

AsciiPlugin: GCC fixes

 M  +2 -2      asciisource.cpp  
 M  +1 -1      kst_atof.h  


--- branches/work/kst/portto4/kst/src/datasources/ascii/asciisource.cpp #1155427:1155428
@@ -115,9 +115,9 @@
 //-------------------------------------------------------------------------------------------
 AsciiSource::AsciiSource(Kst::ObjectStore *store, QSettings *cfg, const QString& filename, const QString& type, const QDomElement& e) :
   Kst::DataSource(store, cfg, filename, type),
-  iv(new DataInterfaceAsciiVector(*this)),
   _tmpBuffer(),
-  _rowIndex()
+  _rowIndex(),
+  iv(new DataInterfaceAsciiVector(*this))
 {
   setInterface(iv);
 
--- branches/work/kst/portto4/kst/src/datasources/ascii/kst_atof.h #1155427:1155428
@@ -2,7 +2,7 @@
 #define KST_ATOF_H
 
 #include <QByteArray>
-#include <math.h>
+#include <stdlib.h>
 
 
 struct LexicalCast


More information about the Kst mailing list