summaryrefslogtreecommitdiff
Unidiff
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,18 +1,18 @@
1/* 1/*
2** Author: Carsten Schneider <zcarsten@gmx.net> 2** Author: Carsten Schneider <CarstenSchneider@t-online.de>
3** 3**
4** $Id$ 4** $Id$
5** 5**
6** Homepage: http://z-soft.z-portal.info/zsafe/index.html 6** Homepage: http://home.t-online.de/home/CarstenSchneider/zsafe/index.html
7*/ 7*/
8 8
9 9
10#include "zsafe.h" 10#include "zsafe.h"
11#ifdef DESKTOP 11#ifdef DESKTOP
12#include <qapplication.h> 12#include <qapplication.h>
13#else 13#else
14#include <qpe/qpeapplication.h> 14#include <qpe/qpeapplication.h>
15#endif 15#endif
16#include <stdio.h> 16#include <stdio.h>
17#include <signal.h> 17#include <signal.h>
18#include "qsettings.h" 18#include "qsettings.h"
@@ -69,33 +69,39 @@ int main( int argc, char ** argv )
69 else 69 else
70 { 70 {
71 DeskW = 600; 71 DeskW = 600;
72 DeskH = 400; 72 DeskH = 400;
73 } 73 }
74#else 74#else
75 DeskW = a.desktop()->width(); 75 DeskW = a.desktop()->width();
76 DeskH = a.desktop()->height(); 76 DeskH = a.desktop()->height();
77 77
78 char buf[128]; 78 char buf[128];
79 sprintf (buf, "Width: %d Height: %d\n", DeskW, DeskH); 79 sprintf (buf, "Width: %d Height: %d\n", DeskW, DeskH);
80 qWarning (buf); 80 qWarning (buf);
81
82#ifdef JPATCH_HDE
83 // nothings
84#else
81 if (DeskW > 240) 85 if (DeskW > 240)
82 { 86 {
83 DeskW -= 20; 87 DeskW -= 20;
84 DeskH += 25; 88 DeskH += 25;
85 sprintf (buf, "Changed width: %d Height: %d\n", DeskW, DeskH); 89 sprintf (buf, "Changed width: %d Height: %d\n", DeskW, DeskH);
86 qWarning (buf); 90 qWarning (buf);
87 } 91 }
88#endif 92#endif
89 93
94#endif
95
90 ZSafe mw; 96 ZSafe mw;
91 zs = &mw; 97 zs = &mw;
92 98
93#ifndef WIN32 99#ifndef WIN32
94 signal (SIGCONT, resume); 100 signal (SIGCONT, resume);
95#endif 101#endif
96#ifdef DESKTOP 102#ifdef DESKTOP
97 a.setMainWidget(&mw); 103 a.setMainWidget(&mw);
98 mw.show(); 104 mw.show();
99#else 105#else
100 // a.showMainWidget( &mw ); 106 // a.showMainWidget( &mw );
101 a.showMainDocumentWidget( &mw ); 107 a.showMainDocumentWidget( &mw );