summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2020-11-20 01:22:36 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2020-11-25 19:05:12 +0100
commitcabeb1464c85d911eea427bd48e8188facde8e56 (patch)
tree329e66698e7bed09b61f47e816c18aad0fc625b2 /src
parentReenable Ctrl+U (diff)
downloadnheko-cabeb1464c85d911eea427bd48e8188facde8e56.tar.xz
WIP Qml completer
Diffstat (limited to 'src')
-rw-r--r--src/timeline/InputBar.cpp6
-rw-r--r--src/timeline/InputBar.h2
2 files changed, 8 insertions, 0 deletions
diff --git a/src/timeline/InputBar.cpp b/src/timeline/InputBar.cpp

index 1eaaaa64..82649faa 100644 --- a/src/timeline/InputBar.cpp +++ b/src/timeline/InputBar.cpp
@@ -163,6 +163,12 @@ InputBar::nextText() return text(); } +QObject * +InputBar::completerFor(QString completerName) +{ + return nullptr; +} + void InputBar::send() { diff --git a/src/timeline/InputBar.h b/src/timeline/InputBar.h
index 5e66e86f..939e8dad 100644 --- a/src/timeline/InputBar.h +++ b/src/timeline/InputBar.h
@@ -41,6 +41,8 @@ public slots: bool uploading() const { return uploading_; } void callButton(); + QObject *completerFor(QString completerName); + private slots: void startTyping(); void stopTyping();