summaryrefslogtreecommitdiffstats
path: root/examples/graphicsview/dragdroprobot/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/graphicsview/dragdroprobot/main.cpp')
-rw-r--r--examples/graphicsview/dragdroprobot/main.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/examples/graphicsview/dragdroprobot/main.cpp b/examples/graphicsview/dragdroprobot/main.cpp
index 9b6f95c7a2..c90aef0599 100644
--- a/examples/graphicsview/dragdroprobot/main.cpp
+++ b/examples/graphicsview/dragdroprobot/main.cpp
@@ -55,9 +55,6 @@ public:
protected:
virtual void resizeEvent(QResizeEvent *)
{
-#if defined(Q_OS_SYMBIAN)
- fitInView(sceneRect(), Qt::KeepAspectRatio);
-#endif
}
};
@@ -90,11 +87,7 @@ int main(int argc, char **argv)
view.setViewportUpdateMode(QGraphicsView::BoundingRectViewportUpdate);
view.setBackgroundBrush(QColor(230, 200, 167));
view.setWindowTitle("Drag and Drop Robot");
-#if defined(Q_OS_SYMBIAN)
- view.showMaximized();
-#else
view.show();
-#endif
return app.exec();
}