summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/zsafe/main.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/noncore/apps/zsafe/main.cpp b/noncore/apps/zsafe/main.cpp
index e225775..7ff549b 100644
--- a/noncore/apps/zsafe/main.cpp
+++ b/noncore/apps/zsafe/main.cpp
@@ -1,30 +1,30 @@
/*
-** Author: Carsten Schneider <zcarsten@gmx.net>
+** Author: Carsten Schneider <CarstenSchneider@t-online.de>
**
** $Id$
**
-** Homepage: http://z-soft.z-portal.info/zsafe/index.html
+** Homepage: http://home.t-online.de/home/CarstenSchneider/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)
@@ -57,50 +57,56 @@ int main( int argc, char ** argv )
{
#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
{
DeskW = 600;
DeskH = 400;
}
#else
DeskW = a.desktop()->width();
DeskH = a.desktop()->height();
char buf[128];
sprintf (buf, "Width: %d Height: %d\n", DeskW, DeskH);
qWarning (buf);
+
+#ifdef JPATCH_HDE
+ // nothings
+#else
if (DeskW > 240)
{
DeskW -= 20;
DeskH += 25;
sprintf (buf, "Changed width: %d Height: %d\n", DeskW, DeskH);
qWarning (buf);
}
#endif
+#endif
+
ZSafe mw;
zs = &mw;
#ifndef WIN32
signal (SIGCONT, resume);
#endif
#ifdef DESKTOP
a.setMainWidget(&mw);
mw.show();
#else
// a.showMainWidget( &mw );
a.showMainDocumentWidget( &mw );
#endif
int ret = a.exec();
return ret;
}