summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swift/QtUI/UserSearch/QtSuggestingJIDInput.cpp')
-rw-r--r--Swift/QtUI/UserSearch/QtSuggestingJIDInput.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/Swift/QtUI/UserSearch/QtSuggestingJIDInput.cpp b/Swift/QtUI/UserSearch/QtSuggestingJIDInput.cpp
index a4a4610..9b96627 100644
--- a/Swift/QtUI/UserSearch/QtSuggestingJIDInput.cpp
+++ b/Swift/QtUI/UserSearch/QtSuggestingJIDInput.cpp
@@ -93,2 +93,7 @@ void QtSuggestingJIDInput::setSuggestions(const std::vector<Contact::ref>& sugge
+void QtSuggestingJIDInput::clear() {
+ setText("");
+ currentContact_.reset();
+}
+
void QtSuggestingJIDInput::keyPressEvent(QKeyEvent* event) {
@@ -140,3 +145,2 @@ void QtSuggestingJIDInput::handleClicked(const QModelIndex& index) {
currentContact_ = contactListModel_->getContact(index.row());
- setText("");
onUserSelected(currentContact_->jid);