summaryrefslogtreecommitdiffstats
path: root/examples/draganddrop/fridgemagnets/dragwidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/draganddrop/fridgemagnets/dragwidget.cpp')
-rw-r--r--examples/draganddrop/fridgemagnets/dragwidget.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/examples/draganddrop/fridgemagnets/dragwidget.cpp b/examples/draganddrop/fridgemagnets/dragwidget.cpp
index 3dcd406174..44b377ab89 100644
--- a/examples/draganddrop/fridgemagnets/dragwidget.cpp
+++ b/examples/draganddrop/fridgemagnets/dragwidget.cpp
@@ -65,11 +65,7 @@ DragWidget::DragWidget(QWidget *parent)
wordLabel->show();
wordLabel->setAttribute(Qt::WA_DeleteOnClose);
x += wordLabel->width() + 2;
-#if defined(Q_WS_MAEMO_5) || defined(Q_WS_SIMULATOR)
- if (x >= 345) {
-#else
if (x >= 245) {
-#endif
x = 5;
y += wordLabel->height() + 2;
}
@@ -78,12 +74,10 @@ DragWidget::DragWidget(QWidget *parent)
//! [1]
//! [2]
- #ifndef Q_WS_S60
//Fridge magnets is used for demoing Qt on S60 and themed backgrounds look better than white
QPalette newPalette = palette();
newPalette.setColor(QPalette::Window, Qt::white);
setPalette(newPalette);
- #endif
setMinimumSize(400, qMax(200, y));
setWindowTitle(tr("Fridge Magnets"));