diff options
author | Tobias Hunger <tobias.hunger@digia.com> | 2014-05-09 12:09:50 +0200 |
---|---|---|
committer | Daniel Teske <daniel.teske@digia.com> | 2014-05-12 10:53:16 +0200 |
commit | 01d9e4d70b5b003f10631c953d8c346d5e75d4f7 (patch) | |
tree | ffda94674e72173c412afcab7986ab37b005c5ef /src/plugins | |
parent | 2538b610c26a82d721546e7035155d6d879ab49f (diff) | |
download | qt-creator-01d9e4d70b5b003f10631c953d8c346d5e75d4f7.tar.gz |
Android: Fix warning about hidding overloaded virtual method
Change-Id: I5787af2620565f759ee2e739d1458e3f0cf63f2b
Reviewed-by: Wiebe Cazemier <wiebe@halfgaar.net>
Reviewed-by: hjk <hjk121@nokiamail.com>
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/android/androidmanifesteditor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/android/androidmanifesteditor.h b/src/plugins/android/androidmanifesteditor.h index f8851972cd..d419e9f13d 100644 --- a/src/plugins/android/androidmanifesteditor.h +++ b/src/plugins/android/androidmanifesteditor.h @@ -58,7 +58,7 @@ public: int currentLine() const; int currentColumn() const; - void gotoLine(int line, int column = 0) { textEditor()->gotoLine(line, column); } + void gotoLine(int line, int column = 0, bool centerLine = true) { textEditor()->gotoLine(line, column, centerLine); } private slots: void changeEditorPage(QAction *action); |