aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVolker Hilsheimer <volker.hilsheimer@qt.io>2020-06-22 11:03:33 +0200
committerVolker Hilsheimer <volker.hilsheimer@qt.io>2020-06-22 12:04:45 +0200
commit826bd4791fb983bd48f40fd486db697e54772f0f (patch)
treedfe21c868ac7ff504d70c20cc5036fcd2040e116 /src
parent5760593c66928c77b193a8502b8433e122980bc1 (diff)
Fix compiler warnings for overrides that miss 'override' keyword
Pick-to: 5.15 Change-Id: I60d1da8dfc781f414b2f047266ec9bb4fede9d19 Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
Diffstat (limited to 'src')
-rw-r--r--src/plugins/thai/plugin/thaiinputmethod_p.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/thai/plugin/thaiinputmethod_p.h b/src/plugins/thai/plugin/thaiinputmethod_p.h
index 2a5d949f..ef1dd547 100644
--- a/src/plugins/thai/plugin/thaiinputmethod_p.h
+++ b/src/plugins/thai/plugin/thaiinputmethod_p.h
@@ -51,9 +51,9 @@ public:
explicit ThaiInputMethod(QObject *parent = nullptr);
#ifndef QT_HUNSPELLINPUTMETHOD_LIB
- QList<QVirtualKeyboardInputEngine::InputMode> inputModes(const QString &locale);
- bool setInputMode(const QString &locale, QVirtualKeyboardInputEngine::InputMode inputMode);
- bool setTextCase(QVirtualKeyboardInputEngine::TextCase textCase);
+ QList<QVirtualKeyboardInputEngine::InputMode> inputModes(const QString &locale) override;
+ bool setInputMode(const QString &locale, QVirtualKeyboardInputEngine::InputMode inputMode) override;
+ bool setTextCase(QVirtualKeyboardInputEngine::TextCase textCase) override;
#endif
bool keyEvent(Qt::Key key, const QString &text, Qt::KeyboardModifiers modifiers) override;