瀏覽代碼

* changed CodeCompleteMinLen type from a const to a variable

pierre 23 年之前
父節點
當前提交
b7b65d3165
共有 1 個文件被更改,包括 6 次插入2 次删除
  1. 6 2
      ide/weditor.pas

+ 6 - 2
ide/weditor.pas

@@ -68,7 +68,6 @@ const
       MaxLineLength     = 255;
       MaxLineCount      = {$ifdef FPC}2000000{$else}16380{$endif};
 
-      CodeCompleteMinLen = 4; { minimum length of text to try to complete }
 
       CodeTemplateCursorChar = '|'; { char to signal cursor pos in templates }
 
@@ -727,6 +726,8 @@ const
        selection (PM) }
      DontConsiderShiftState: boolean  = false;
 
+     CodeCompleteMinLen : byte = 4; { minimum length of text to try to complete }
+
      ToClipCmds         : TCommandSet = ([cmCut,cmCopy,cmCopyWin]);
      FromClipCmds       : TCommandSet = ([cmPaste]);
      FromWinClipCmds    : TCommandSet = ([cmPasteWin]);
@@ -7112,7 +7113,10 @@ end;
 END.
 {
   $Log$
-  Revision 1.27  2002-09-04 08:39:55  pierre
+  Revision 1.28  2002-09-04 14:02:54  pierre
+   * changed CodeCompleteMinLen type from a const to a variable
+
+  Revision 1.27  2002/09/04 08:39:55  pierre
    * only suppress current word in CodeTemplate if it matches Template name
 
   Revision 1.26  2002/09/03 13:56:21  pierre