author | alwin <alwin> | 2004-04-06 12:48:22 (UTC) |
---|---|---|
committer | alwin <alwin> | 2004-04-06 12:48:22 (UTC) |
commit | 4aa395c79d046fafe11d0e9c9838f6565019d7d3 (patch) (unidiff) | |
tree | 067b3d46d42379f437806fb4d24ea0b86e862eca | |
parent | 19a3f177cdf334259438a0f2266255886f3063bb (diff) | |
download | opie-4aa395c79d046fafe11d0e9c9838f6565019d7d3.zip opie-4aa395c79d046fafe11d0e9c9838f6565019d7d3.tar.gz opie-4aa395c79d046fafe11d0e9c9838f6565019d7d3.tar.bz2 |
use OApplication
-rw-r--r-- | noncore/graphics/opie-eye/slave/main.cpp | 20 |
1 files changed, 10 insertions, 10 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 | |||
@@ -13,6 +13,6 @@ | |||
13 | 13 | ||
14 | #include <qtopia/qpeapplication.h> | 14 | #include <opie2/oapplication.h> |
15 | 15 | ||
16 | int main( int argc, char* argv[] ) { | 16 | int main( int argc, char* argv[] ) { |
17 | QPEApplication app( argc, argv ); | 17 | Opie::Core::OApplication app( argc, argv,"opie-eye-slave" ); |
18 | SlaveReciever rec( 0 ); | 18 | SlaveReciever rec( 0 ); |
@@ -33,8 +33,8 @@ int main( int argc, char* argv[] ) { | |||
33 | GifSlave slave; | 33 | GifSlave slave; |
34 | owarn << str +" "+slave.iconViewName(str ) << oendl; | 34 | owarn << str +" "+slave.iconViewName(str ) << oendl; |
35 | owarn << str+" "+slave.fullImageInfo( str ) << oendl; | 35 | owarn << str+" "+slave.fullImageInfo( str ) << oendl; |
36 | 36 | ||
37 | PNGSlave pngslave; | 37 | PNGSlave pngslave; |
38 | owarn << str + " " + pngslave.iconViewName(str) << oendl; | 38 | owarn << str + " " + pngslave.iconViewName(str) << oendl; |
39 | owarn << str + " " + pngslave.fullImageInfo(str) << oendl; | 39 | owarn << str + " " + pngslave.fullImageInfo(str) << oendl; |
40 | 40 | ||
@@ -42,4 +42,4 @@ int main( int argc, char* argv[] ) { | |||
42 | JpegSlave jpgslave; | 42 | JpegSlave jpgslave; |
43 | owarn << str + " " + jpgslave.iconViewName(str ) << oendl; | 43 | owarn << str + " " + jpgslave.iconViewName(str ) << oendl; |
44 | owarn << str + " " + jpgslave.fullImageInfo( str ) << oendl; | 44 | owarn << str + " " + jpgslave.fullImageInfo( str ) << oendl; |
45 | //return app.exec(); | 45 | //return app.exec(); |
@@ -47,3 +47,3 @@ int main( int argc, char* argv[] ) { | |||
47 | if ( pix.isNull() ) { | 47 | if ( pix.isNull() ) { |
48 | owarn << "No Thumbnail" << oendl; | 48 | owarn << "No Thumbnail" << oendl; |
49 | pix = slave.pixmap(str, 24, 24); | 49 | pix = slave.pixmap(str, 24, 24); |
@@ -52,3 +52,3 @@ int main( int argc, char* argv[] ) { | |||
52 | if (!pix.isNull() ) { | 52 | if (!pix.isNull() ) { |
53 | owarn << "Saving Thumbnail" << oendl; | 53 | owarn << "Saving Thumbnail" << oendl; |
54 | ThumbNailTool::putThumb( str, pix, 24, 24 ); | 54 | ThumbNailTool::putThumb( str, pix, 24, 24 ); |