summaryrefslogtreecommitdiffstats
path: root/examples/tools/plugandpaint
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@woboq.com>2012-04-20 16:55:59 +0200
committerQt by Nokia <qt-info@nokia.com>2012-04-21 17:29:40 +0200
commit910b446fb22c9c5ab3cc65d4025efc5102d0c45e (patch)
tree02b1470ccdbe09bfc8a24694447a7a136fd9b7fb /examples/tools/plugandpaint
parentfcec903da7ce0ec2b95d0b1d639885c6fc71f9c3 (diff)
Examples: Don't use deprecated methods
Change-Id: Ib6e795f6b5bb6a3ac19882a5fb224460ef1fc8ad Reviewed-by: Stephen Kelly <stephen.kelly@kdab.com>
Diffstat (limited to 'examples/tools/plugandpaint')
-rw-r--r--examples/tools/plugandpaint/mainwindow.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/tools/plugandpaint/mainwindow.cpp b/examples/tools/plugandpaint/mainwindow.cpp
index 472e10120d..c33c5be518 100644
--- a/examples/tools/plugandpaint/mainwindow.cpp
+++ b/examples/tools/plugandpaint/mainwindow.cpp
@@ -116,10 +116,10 @@ void MainWindow::brushColor()
void MainWindow::brushWidth()
{
bool ok;
- const int newWidth = QInputDialog::getInteger(this, tr("Plug & Paint"),
- tr("Select brush width:"),
- paintArea->brushWidth(),
- 1, 50, 1, &ok);
+ const int newWidth = QInputDialog::getInt(this, tr("Plug & Paint"),
+ tr("Select brush width:"),
+ paintArea->brushWidth(),
+ 1, 50, 1, &ok);
if (ok)
paintArea->setBrushWidth(newWidth);
}