diff options
author | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2017-10-22 19:03:55 +0300 |
---|---|---|
committer | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2017-10-22 19:03:55 +0300 |
commit | c0e55378c31321e2ab7a117cefb3bd63a609e474 (patch) | |
tree | ef6f08864d713a4fc6dc49b24018156abfdec048 /include/TextInputWidget.h | |
parent | Remove cache updates from the main thread (diff) | |
download | nheko-c0e55378c31321e2ab7a117cefb3bd63a609e474.tar.xz |
Remove extra inline keywords
Diffstat (limited to 'include/TextInputWidget.h')
-rw-r--r-- | include/TextInputWidget.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/include/TextInputWidget.h b/include/TextInputWidget.h index 772bdd46..08b62f45 100644 --- a/include/TextInputWidget.h +++ b/include/TextInputWidget.h @@ -55,7 +55,7 @@ public slots: void onSendButtonClicked(); void openFileSelection(); void hideUploadSpinner(); - inline void focusLineEdit(); + void focusLineEdit() { input_->setFocus(); }; private slots: void addSelectedEmoji(const QString &emoji); @@ -80,9 +80,3 @@ private: FlatButton *sendMessageBtn_; EmojiPickButton *emojiBtn_; }; - -inline void -TextInputWidget::focusLineEdit() -{ - input_->setFocus(); -} |