forked from qt-creator/qt-creator
texteditor: directly call completion instead using ITextEditor interface
Reviewed-By: con
This commit is contained in:
@@ -155,9 +155,6 @@ public:
|
||||
BaseTextEditor *editor() const;
|
||||
ITextMarkable *markableInterface() const;
|
||||
|
||||
virtual void triggerCompletions();
|
||||
virtual void triggerQuickFix();
|
||||
|
||||
QChar characterAt(int pos) const;
|
||||
|
||||
void print(QPrinter *);
|
||||
@@ -584,9 +581,6 @@ public:
|
||||
QString textAt(int pos, int length) const;
|
||||
inline QChar characterAt(int pos) const { return e->characterAt(pos); }
|
||||
|
||||
inline void triggerCompletions() { e->triggerCompletions(); } // slot?
|
||||
inline void triggerQuickFix() { e->triggerQuickFix(); } // slot?
|
||||
|
||||
inline ITextMarkable *markableInterface() { return e->markableInterface(); }
|
||||
|
||||
void setContextHelpId(const QString &id) { m_contextHelpId = id; }
|
||||
|
||||
Reference in New Issue
Block a user