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

Adam Treat treat at kde.org
Fri Mar 2 20:50:07 CET 2007


SVN commit 638650 by treat:

* Oopsies


 M  +1 -1      CMakeLists.txt  
 M  +1 -1      plotmimesource.cpp  
 M  +1 -1      statuslabel.cpp  


--- branches/work/kst/portto4/kst/src/libkstapp/CMakeLists.txt #638649:638650
@@ -103,7 +103,7 @@
    labelrenderer.cpp
    plotmimesource.cpp
    statuslabel.cpp
-   treetools.cpp
+#    treetools.cpp
    updatethread.cpp
    updatethread-multicore.cpp
    )
--- branches/work/kst/portto4/kst/src/libkstapp/plotmimesource.cpp #638649:638650
@@ -33,7 +33,7 @@
 
 QByteArray PlotMimeSource::encodedData(const char *mime) const {
   QByteArray  bytes;
-  QDataStream data(bytes, QIODevice::WriteOnly);
+  QDataStream data(&bytes, QIODevice::WriteOnly);
   
   if (strcmp(mime, format(0)) == 0) {
     data << _window;
--- branches/work/kst/portto4/kst/src/libkstapp/statuslabel.cpp #638649:638650
@@ -25,7 +25,7 @@
 #include "statuslabel.h"
 
 StatusLabel::StatusLabel(const QString &text, QWidget *parent, Qt::WindowFlags f)
-: QLabel(text, f) {
+: QLabel(text, parent, f) {
   setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
   setMinimumWidth(0);
   _width = 0;


More information about the Kst mailing list