Replacing empty parenthesis for functions with the word 'void' to allow autocomplete to work.

This commit is contained in:
Ima Mechanique 2013-07-18 22:31:39 +01:00
parent bf211138f8
commit 6bf275439a
4 changed files with 34 additions and 27 deletions

View file

@ -1214,7 +1214,7 @@ namespace LSLEditor
intKeyWordLength = strKeyWord.Length;
if (IsRegularExpression)
intKeyWordLength = 0; // else it would delete typed keyword
intKeyWordLength = 0; // else it would delete the word typed so far
if (strKeyWord.Length == 0 || this.blnEscape)
{
@ -1258,7 +1258,7 @@ namespace LSLEditor
InsertSelectedWord();
*/
if (strKeyWord == "else") // else autocompletion enoys people!!! TODO
if (strKeyWord == "else") // else autocompletion annoys people!!! TODO
{
this.TooltipListBox.Visible = false;
this.GListBoxWindow.Visible = false;