CVS commit by raggi: added aboutToShowCompletionBox() signal M +2 -1 qeditor_view.cpp 1.41 M +4 -2 qeditor_view.h 1.25 --- kdevelop/parts/qeditor/qeditor_view.cpp #1.40:1.41 @@ -315,4 +315,5 @@ void QEditorView::showCompletionBox(QVal bool casesensitive ) { + emit aboutToShowCompletionBox(); m_pCodeCompletion->showCompletionBox( complList, offset, casesensitive ); } --- kdevelop/parts/qeditor/qeditor_view.h #1.24:1.25 @@ -273,4 +273,6 @@ signals: */ void filterInsertString(KTextEditor::CompletionEntry*,QString*); + + void aboutToShowCompletionBox(); public: