summaryrefslogtreecommitdiffstats
path: root/examples/multitouch
diff options
context:
space:
mode:
authorBradley T. Hughes <bradley.hughes@nokia.com>2009-03-25 11:32:52 +0100
committerBradley T. Hughes <bradley.hughes@nokia.com>2009-03-25 11:32:52 +0100
commitb5236dedd9ab72d6e0bd09151a6f55bb40a7034c (patch)
tree9f14a6a74451c2e3a12690275672a476f70a6291 /examples/multitouch
parent98619f427322ac7889b3db6f8991ca079209cec7 (diff)
have the window title in the fingerpaint example say Finger Paint, not Scribble
Diffstat (limited to 'examples/multitouch')
-rw-r--r--examples/multitouch/fingerpaint/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/multitouch/fingerpaint/mainwindow.cpp b/examples/multitouch/fingerpaint/mainwindow.cpp
index 546c68559c..e510f89f3d 100644
--- a/examples/multitouch/fingerpaint/mainwindow.cpp
+++ b/examples/multitouch/fingerpaint/mainwindow.cpp
@@ -53,7 +53,7 @@ MainWindow::MainWindow()
createActions();
createMenus();
- setWindowTitle(tr("Scribble"));
+ setWindowTitle(tr("Finger Paint"));
resize(500, 500);
}
//! [0]