summary refs log tree commit diff
path: root/src/TextInputWidget.h
diff options
context:
space:
mode:
authorJussi Kuokkanen <jussi.kuokkanen@protonmail.com>2020-09-02 13:32:57 +0300
committerNicolas Werner <nicolas.werner@hotmail.de>2020-11-25 19:05:12 +0100
commit748bf0cd988c103e66919db753d40fe19a784022 (patch)
treeb062ee29e6e0e621987ab90c0af4888d8aca9cac /src/TextInputWidget.h
parentWIP Qml completer (diff)
downloadnheko-748bf0cd988c103e66919db753d40fe19a784022.tar.xz
rename CompletionModel to CompletionProxyModel
Diffstat (limited to 'src/TextInputWidget.h')
-rw-r--r--src/TextInputWidget.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/TextInputWidget.h b/src/TextInputWidget.h

index c62a98be..19462f70 100644 --- a/src/TextInputWidget.h +++ b/src/TextInputWidget.h
@@ -31,7 +31,7 @@ struct SearchResult; -class CompletionModel; +class CompletionProxyModel; class FlatButton; class LoadingIndicator; class QCompleter; @@ -72,7 +72,7 @@ protected: private: bool emoji_popup_open_ = false; - CompletionModel *emoji_completion_model_; + CompletionProxyModel *emoji_completion_model_; std::deque<QString> true_history_, working_history_; int trigger_pos_; // Where emoji completer was triggered size_t history_index_;