2
0
Эх сурвалжийг харах

Fix: Autocomplete support for event functions listed some procedures as functions.

Martijn Laan 4 жил өмнө
parent
commit
93633b0afc

+ 1 - 1
Components/ScintStylerInnoSetup.pas

@@ -888,7 +888,7 @@ begin
     SLProcedures := TStringList.Create;
     for I := 0 to High(EventFunctions) do begin
       S := String(EventFunctions[I].Name);
-      if Pos(':', S) <> 0 then
+      if Pos('):', S) <> 0 then
         SLFunctions.Add(S)
       else
         SLProcedures.Add(S);

+ 2 - 1
whatsnew.htm

@@ -30,7 +30,8 @@ For conditions of distribution and use, see <a href="https://jrsoftware.org/file
 
 <p><a name="6.1.3"></a><span class="ver">6.1.3-dev </span><span class="date">(?)</span></p>
 <ul>
-  <li>Pascal Scripting change: Added new <tt>ItemFontStyle</tt> and <tt>SubItemFontStyle</tt> properties to the <tt/>TNewCheckListBox<tt> support class. See the <i><a href="https://jrsoftware.github.io/issrc/Examples/CodeClasses.iss">CodeClasses.iss</a></i> example script for an example.</li>
+  <li>Pascal Scripting change: Added new <tt>ItemFontStyle</tt> and <tt>SubItemFontStyle</tt> properties to the <tt/>TNewCheckListBox</tt> support class. See the <i><a href="https://jrsoftware.github.io/issrc/Examples/CodeClasses.iss">CodeClasses.iss</a></i> example script for an example.</li>
+  <li>Compiler IDE change: <i>Fix:</i> Autocomplete support for event functions listed some procedures as functions.</li>
 </ul>
 
 <p>Contributions via <a href="https://github.com/jrsoftware/issrc" target="_blank">GitHub</a>: <b>Thanks to Sergii Leonov for their contributions.</b></p>