Android: Fix warning about hidding overloaded virtual method

Change-Id: I5787af2620565f759ee2e739d1458e3f0cf63f2b
Reviewed-by: Wiebe Cazemier <wiebe@halfgaar.net>
Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
Tobias Hunger
2014-05-09 12:09:50 +02:00
committed by Daniel Teske
parent 2538b610c2
commit 01d9e4d70b

View File

@@ -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);