diff options
author | Jan-Arve Sæther <jan-arve.saether@nokia.com> | 2009-11-13 08:55:43 (GMT) |
---|---|---|
committer | Jan-Arve Sæther <jan-arve.saether@nokia.com> | 2009-11-13 08:55:43 (GMT) |
commit | baf18674870cc86db12cb44a28dd5480cc04ea8a (patch) | |
tree | bc1c64fb1ed0b2760a7023e06ce06644957f6e14 /examples/graphicsview | |
parent | f79ecb7db2f26078541de6c31661fba76e12c9c0 (diff) | |
download | Qt-baf18674870cc86db12cb44a28dd5480cc04ea8a.zip Qt-baf18674870cc86db12cb44a28dd5480cc04ea8a.tar.gz Qt-baf18674870cc86db12cb44a28dd5480cc04ea8a.tar.bz2 |
Clean up example (remove unused ifdef).
Diffstat (limited to 'examples/graphicsview')
-rw-r--r-- | examples/graphicsview/weatheranchorlayout/main.cpp | 20 |
1 files changed, 6 insertions, 14 deletions
diff --git a/examples/graphicsview/weatheranchorlayout/main.cpp b/examples/graphicsview/weatheranchorlayout/main.cpp index 3ccde50..d835ae3 100644 --- a/examples/graphicsview/weatheranchorlayout/main.cpp +++ b/examples/graphicsview/weatheranchorlayout/main.cpp @@ -185,20 +185,12 @@ int main(int argc, char **argv) QGraphicsScene scene; scene.setSceneRect(0, 0, 800, 480); -#ifdef DEBUG_MODE - QGraphicsProxyWidget *title = createItem("Title"); - QGraphicsProxyWidget *place = createItem("Place"); - QGraphicsProxyWidget *sunnyWeather = createItem("Sun"); - QGraphicsProxyWidget *details = createItem("Details"); - QGraphicsProxyWidget *tabbar = createItem("Tabbar"); -#else - // pixmaps widgets - PixmapWidget *title = new PixmapWidget(QPixmap(":/images/title.jpg")); - PlaceWidget *place = new PlaceWidget(QPixmap(":/images/place.jpg")); - PixmapWidget *details = new PixmapWidget(QPixmap(":/images/5days.jpg")); - PixmapWidget *sunnyWeather = new PixmapWidget(QPixmap(":/images/weather-few-clouds.png")); - PixmapWidget *tabbar = new PixmapWidget(QPixmap(":/images/tabbar.jpg")); -#endif + // pixmaps widgets + PixmapWidget *title = new PixmapWidget(QPixmap(":/images/title.jpg")); + PlaceWidget *place = new PlaceWidget(QPixmap(":/images/place.jpg")); + PixmapWidget *details = new PixmapWidget(QPixmap(":/images/5days.jpg")); + PixmapWidget *sunnyWeather = new PixmapWidget(QPixmap(":/images/weather-few-clouds.png")); + PixmapWidget *tabbar = new PixmapWidget(QPixmap(":/images/tabbar.jpg")); // setup sizes |