summaryrefslogtreecommitdiff
path: root/src/plugins/texteditor/completionwidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/texteditor/completionwidget.h')
-rw-r--r--src/plugins/texteditor/completionwidget.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/texteditor/completionwidget.h b/src/plugins/texteditor/completionwidget.h
index ece02904b1..813fd89f30 100644
--- a/src/plugins/texteditor/completionwidget.h
+++ b/src/plugins/texteditor/completionwidget.h
@@ -61,6 +61,8 @@ public:
void setCompletionItems(const QList<TextEditor::CompletionItem> &completionitems);
void showCompletions(int startPos);
+ QChar typedChar() const;
+
signals:
void itemSelected(const TextEditor::CompletionItem &item);
void completionListClosed();
@@ -115,6 +117,7 @@ private:
CompletionSupport *m_support;
QPointer<CompletionInfoFrame> m_infoFrame;
QTimer m_infoTimer;
+ QChar m_typedChar;
};
} // namespace Internal