author | zcarsten <zcarsten> | 2003-07-24 16:54:29 (UTC) |
---|---|---|
committer | zcarsten <zcarsten> | 2003-07-24 16:54:29 (UTC) |
commit | 8bc46e21b76d5e01256a3f960c7a7fd3b24f35c9 (patch) (side-by-side diff) | |
tree | 4892bd9cb445d6d01920484b591241e27f4a52d6 | |
parent | cab546dd4a50d15a9b068c40bf582b6c59042d90 (diff) | |
download | opie-8bc46e21b76d5e01256a3f960c7a7fd3b24f35c9.zip opie-8bc46e21b76d5e01256a3f960c7a7fd3b24f35c9.tar.gz opie-8bc46e21b76d5e01256a3f960c7a7fd3b24f35c9.tar.bz2 |
Header changed
-rw-r--r-- | noncore/apps/zsafe/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/apps/zsafe/main.cpp b/noncore/apps/zsafe/main.cpp index c6ef5f9..e225775 100644 --- a/noncore/apps/zsafe/main.cpp +++ b/noncore/apps/zsafe/main.cpp @@ -1,70 +1,70 @@ /* -** Author: Carsten Schneider <CarstenSchneider@t-online.de> +** Author: Carsten Schneider <zcarsten@gmx.net> ** ** $Id$ ** -** Homepage: http://home.t-online.de/home/CarstenSchneider/zsafe/index.html +** Homepage: http://z-soft.z-portal.info/zsafe/index.html */ #include "zsafe.h" #ifdef DESKTOP #include <qapplication.h> #else #include <qpe/qpeapplication.h> #endif #include <stdio.h> #include <signal.h> #include "qsettings.h" ZSafe *zs; #ifdef DESKTOP QApplication *appl; #else QPEApplication *appl; #endif int DeskW; int DeskH; void suspend (int signum) { printf ("Suspend signal %d received\n", signum); } void resume (int signum) { printf ("Resume signal %d received\n", signum); zs->resume(signum); } int main( int argc, char ** argv ) { #ifndef WIN32 // install signal handler signal (SIGSTOP, suspend); #endif #ifdef DESKTOP QApplication a( argc, argv ); #else QPEApplication a( argc, argv ); #endif appl = &a; #ifdef DESKTOP if (argc >= 3) { #ifndef WIN32 DeskW = atoi(argv[1]); DeskH = atoi(argv[2]); #else int w, h; sscanf (argv[1], "%d", &w); sscanf (argv[2], "%d", &h); DeskW = w; DeskH = h; #endif } else { |