summaryrefslogtreecommitdiffstats
path: root/examples/sql
diff options
context:
space:
mode:
authorJanne Anttila <janne.anttila@digia.com>2009-08-04 10:34:57 (GMT)
committerJanne Anttila <janne.anttila@digia.com>2009-08-04 10:43:47 (GMT)
commit12b37100d5fff9a2309cd8e86cd90325b63cc485 (patch)
tree8adb0642bbe27c5e14b5670eb037317ab5a47fc1 /examples/sql
parente6bb00250b321b149dd80259dc4f479088d5949b (diff)
downloadQt-12b37100d5fff9a2309cd8e86cd90325b63cc485.zip
Qt-12b37100d5fff9a2309cd8e86cd90325b63cc485.tar.gz
Qt-12b37100d5fff9a2309cd8e86cd90325b63cc485.tar.bz2
'Trailing whitespace' and 'blank line' fixes for demos and examples
Diffstat (limited to 'examples/sql')
-rw-r--r--examples/sql/drilldown/drilldown.pro4
-rw-r--r--examples/sql/drilldown/informationwindow.cpp4
-rw-r--r--examples/sql/drilldown/main.cpp8
-rw-r--r--examples/sql/drilldown/view.cpp14
4 files changed, 15 insertions, 15 deletions
diff --git a/examples/sql/drilldown/drilldown.pro b/examples/sql/drilldown/drilldown.pro
index 7907bd2..1d0714b 100644
--- a/examples/sql/drilldown/drilldown.pro
+++ b/examples/sql/drilldown/drilldown.pro
@@ -1,7 +1,7 @@
HEADERS = ../connection.h \
imageitem.h \
informationwindow.h \
- view.h
+ view.h
RESOURCES = drilldown.qrc
SOURCES = imageitem.cpp \
informationwindow.cpp \
@@ -15,6 +15,6 @@ sources.files = $$SOURCES *.h $$RESOURCES $$FORMS drilldown.pro *.png *.jpg imag
sources.path = $$[QT_INSTALL_EXAMPLES]/sql/drilldown
INSTALLS += target sources
-symbian:TARGET.UID3 = 0xA000C612
+symbian:TARGET.UID3 = 0xA000C612
include($$QT_SOURCE_TREE/examples/examplebase.pri)
diff --git a/examples/sql/drilldown/informationwindow.cpp b/examples/sql/drilldown/informationwindow.cpp
index b01b753..8b5fd0c 100644
--- a/examples/sql/drilldown/informationwindow.cpp
+++ b/examples/sql/drilldown/informationwindow.cpp
@@ -101,9 +101,9 @@ InformationWindow::InformationWindow(int id, QSqlRelationalTableModel *offices,
setWindowFlags(Qt::Window);
enableButtons(false);
setWindowTitle(tr("Office: %1").arg(locationText->text()));
-#ifndef Q_OS_SYMBIAN
+#ifndef Q_OS_SYMBIAN
resize(320, sizeHint().height());
-#endif
+#endif
}
//! [4]
diff --git a/examples/sql/drilldown/main.cpp b/examples/sql/drilldown/main.cpp
index 432849d..57a11ed 100644
--- a/examples/sql/drilldown/main.cpp
+++ b/examples/sql/drilldown/main.cpp
@@ -54,10 +54,10 @@ int main(int argc, char *argv[])
return 1;
View view("offices", "images");
-#ifndef Q_OS_SYMBIAN
+#ifndef Q_OS_SYMBIAN
view.show();
-#else
- view.showFullScreen();
-#endif
+#else
+ view.showFullScreen();
+#endif
return app.exec();
}
diff --git a/examples/sql/drilldown/view.cpp b/examples/sql/drilldown/view.cpp
index e288ac6..349547a 100644
--- a/examples/sql/drilldown/view.cpp
+++ b/examples/sql/drilldown/view.cpp
@@ -62,15 +62,15 @@ View::View(const QString &offices, const QString &images, QWidget *parent)
QGraphicsPixmapItem *logo = scene->addPixmap(QPixmap(":/logo.png"));
logo->setPos(30, 515);
-
+
#ifndef Q_OS_SYMBIAN
setMinimumSize(470, 620);
- setMaximumSize(470, 620);
+ setMaximumSize(470, 620);
#else
- setDragMode(QGraphicsView::ScrollHandDrag);
-#endif
+ setDragMode(QGraphicsView::ScrollHandDrag);
+#endif
- setWindowTitle(tr("Offices World Wide"));
+ setWindowTitle(tr("Offices World Wide"));
}
//! [1]
@@ -135,7 +135,7 @@ void View::showInformation(ImageItem *image)
window->show();
#else
window->showFullScreen();
-#endif
+#endif
} else {
InformationWindow *window;
window = new InformationWindow(id, officeTable, this);
@@ -148,7 +148,7 @@ void View::showInformation(ImageItem *image)
window->show();
#else
window->showFullScreen();
-#endif
+#endif
informationWindows.append(window);
}
}