-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,54 +1,54 @@ /* -** 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; |