summaryrefslogtreecommitdiffstats
path: root/examples/draganddrop/draggabletext
diff options
context:
space:
mode:
Diffstat (limited to 'examples/draganddrop/draggabletext')
-rw-r--r--examples/draganddrop/draggabletext/draggabletext.pro7
-rw-r--r--examples/draganddrop/draggabletext/main.cpp4
2 files changed, 1 insertions, 10 deletions
diff --git a/examples/draganddrop/draggabletext/draggabletext.pro b/examples/draganddrop/draggabletext/draggabletext.pro
index 38c20663a2..1fd8e5ce6e 100644
--- a/examples/draganddrop/draggabletext/draggabletext.pro
+++ b/examples/draganddrop/draggabletext/draggabletext.pro
@@ -11,10 +11,5 @@ sources.files = $$SOURCES $$HEADERS $$RESOURCES *.txt *.pro
sources.path = $$[QT_INSTALL_EXAMPLES]/qtbase/draganddrop/draggabletext
INSTALLS += target sources
-symbian {
- TARGET.UID3 = 0xA000CF64
- CONFIG += qt_example
-}
QT += widgets
-maemo5: CONFIG += qt_example
-simulator: warning(This example might not fully work on Simulator platform)
+
diff --git a/examples/draganddrop/draggabletext/main.cpp b/examples/draganddrop/draggabletext/main.cpp
index 0ae794b280..4d0a121337 100644
--- a/examples/draganddrop/draggabletext/main.cpp
+++ b/examples/draganddrop/draggabletext/main.cpp
@@ -47,10 +47,6 @@ int main(int argc, char *argv[])
QApplication app(argc, argv);
DragWidget window;
-#ifdef Q_OS_SYMBIAN
- window.showMaximized();
-#else
window.show();
-#endif
return app.exec();
}