From kde-commits Sun Jun 29 11:34:06 2003 From: Roberto Raggi Date: Sun, 29 Jun 2003 11:34:06 +0000 To: kde-commits Subject: kdevelop/parts/qeditor X-MARC-Message: https://marc.info/?l=kde-commits&m=105688645419933 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: