aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/editor/scripteditor.h
diff options
context:
space:
mode:
authorGravatar Noldor2008-10-17 11:03:45 +0000
committerGravatar Noldor2008-10-17 11:03:45 +0000
commit9580e4652628f5d03321b325218ec79ed2ac3fdd (patch)
tree7cba1580770b76d7167ee719d74b904d56cbe5b5 /src/modules/editor/scripteditor.h
parentfixed selectionChanged signal. (diff)
downloadKVIrc-9580e4652628f5d03321b325218ec79ed2ac3fdd.tar.gz
KVIrc-9580e4652628f5d03321b325218ec79ed2ac3fdd.tar.bz2
KVIrc-9580e4652628f5d03321b325218ec79ed2ac3fdd.zip
fixed bug from ticket #261.
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@2749 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/editor/scripteditor.h')
-rw-r--r--src/modules/editor/scripteditor.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/modules/editor/scripteditor.h b/src/modules/editor/scripteditor.h
index 06739b1a9..bda21f108 100644
--- a/src/modules/editor/scripteditor.h
+++ b/src/modules/editor/scripteditor.h
@@ -61,10 +61,12 @@ protected:
QStringList * m_pListCompletition;
QTimer * m_pStartTimer;
QWidget * m_pParent;
+ int iIndex,iModulesCount;
QString m_szHelp;
public:
KviScriptEditorSyntaxHighlighter * syntaxHighlighter(){return m_pSyntaxHighlighter;};
void createCompleter(QStringList &list);
+
void loadCompleterFromFile();
QCompleter * completer() const { return m_pCompleter; };
QString textUnderCursor() const;
@@ -72,6 +74,7 @@ public:
//void find1();
bool contextSensitiveHelp() const;
public slots:
+ void checkReadyCompleter();
void insertCompletion(const QString & szCompletion);
void slotFind();
void slotHelp();