-rw-r--r-- | noncore/graphics/opie-eye/slave/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/graphics/opie-eye/slave/main.cpp b/noncore/graphics/opie-eye/slave/main.cpp index 5b90483..1629f02 100644 --- a/noncore/graphics/opie-eye/slave/main.cpp +++ b/noncore/graphics/opie-eye/slave/main.cpp @@ -6,20 +6,20 @@ #include "png_slave.h" #include "jpeg_slave.h" #include "thumbnailtool.h" #include "slavereciever.h" #include <qpixmap.h> #include <qcopchannel_qws.h> -#include <qtopia/qpeapplication.h> +#include <opie2/oapplication.h> int main( int argc, char* argv[] ) { - QPEApplication app( argc, argv ); + Opie::Core::OApplication app( argc, argv,"opie-eye-slave" ); SlaveReciever rec( 0 ); QCopChannel chan( "QPE/opie-eye_slave" ); QObject::connect(&chan,SIGNAL(received(const QCString&, const QByteArray&)), &rec, SLOT(recieveAnswer(const QCString&,const QByteArray&))); QObject::connect(qApp,SIGNAL(appMessage(const QCString&, const QByteArray&)), &rec, SLOT(recieveAnswer(const QCString&,const QByteArray&))); |