-rw-r--r-- | noncore/net/opierdesktop/qtwin.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/noncore/net/opierdesktop/qtwin.cpp b/noncore/net/opierdesktop/qtwin.cpp index d2a5ef1..e350bf6 100644 --- a/noncore/net/opierdesktop/qtwin.cpp +++ b/noncore/net/opierdesktop/qtwin.cpp @@ -15,21 +15,17 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "rdesktop.h" -#ifdef SHARP #include <qpe/qpeapplication.h> -#else -#include <qapplication.h> -#endif #include <qmainwindow.h> #include <qwidget.h> #include <qpainter.h> #include <qimage.h> #include <qsocketnotifier.h> #include <qscrollview.h> #include <qmessagebox.h> #include <qpushbutton.h> @@ -52,21 +48,17 @@ char directory[32] = ""; extern int g_width; extern int g_height; extern int server_bpp; extern BOOL fullscreen; extern char username[]; int global_sock; QSocketNotifier* SocketNotifier; -#ifdef SHARP QPEApplication* App; -#else -QApplication* App; -#endif QMyMainWindow* MW; QMyScrollView* SV; struct QColorMap { uint32 RGBColors[256]; int NumColors; }; QColorMap* CM; @@ -1022,21 +1014,17 @@ void redraw(int x, int y, int cx, int cy) /* BOOL ui_init(void) { QWidget* d; CM = NULL; BS = NULL; -#ifdef SHARP App = new QPEApplication(g_argc, g_argv); -#else - App = new QApplication(g_argc, g_argv, QApplication::GuiServer); -#endif if (fullscreen) { d = QApplication::desktop(); width = d->width(); // returns screen width height = d->height(); // returns screen height } return True; } @@ -1611,21 +1599,17 @@ void ui_desktop_restore(uint32 offset, int x, int y, int cx, int cy) redraw(x, y, cx, cy); } //***************************************************************************** int main(int argc, char** argv) { CM = NULL; BS = NULL; -#ifdef SHARP App = new QPEApplication(argc, argv); -#else - App = new QApplication(argc, argv, QApplication::GuiServer); -#endif SV = new QMyScrollView(); App->setMainWidget(SV); SV->showMaximized(); SV->timer_id = SV->startTimer(1000); App->exec(); delete SV; delete App; if (CM != NULL) |