summaryrefslogtreecommitdiffstats
path: root/examples/network/qftp/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/network/qftp/main.cpp')
-rw-r--r--examples/network/qftp/main.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/examples/network/qftp/main.cpp b/examples/network/qftp/main.cpp
index f6eb2d4db2..15689b5a55 100644
--- a/examples/network/qftp/main.cpp
+++ b/examples/network/qftp/main.cpp
@@ -41,26 +41,12 @@
#include <QApplication>
#include "ftpwindow.h"
-#ifdef Q_OS_SYMBIAN
-#include <QDir>
-#include <QDesktopWidget>
-#endif
int main(int argc, char *argv[])
{
Q_INIT_RESOURCE(ftp);
-#ifdef Q_OS_SYMBIAN
- // Change current directory from default private to c:\data
- // in order that user can access the downloaded content
- QDir::setCurrent( "c:\\data" );
-#endif
QApplication app(argc, argv);
FtpWindow ftpWin;
-#ifdef Q_OS_SYMBIAN
- // Make application better looking and more usable on small screen
- ftpWin.showMaximized();
-#else
ftpWin.show();
-#endif
return ftpWin.exec();
}