فهرست منبع

CH: bug fix for the lines insert/delete and breakpoint list problem

Jean-Francois Goulet 20 سال پیش
والد
کامیت
1a7e622298
3فایلهای تغییر یافته به همراه4 افزوده شده و 2 حذف شده
  1. 2 2
      LuaEdit/LuaEdit.dof
  2. BIN
      LuaEdit/LuaEdit.res
  3. 2 0
      LuaEdit/Main.pas

+ 2 - 2
LuaEdit/LuaEdit.dof

@@ -115,7 +115,7 @@ AutoIncBuild=1
 MajorVer=2
 MajorVer=2
 MinorVer=4
 MinorVer=4
 Release=1
 Release=1
-Build=944
+Build=945
 Debug=0
 Debug=0
 PreRelease=0
 PreRelease=0
 Special=0
 Special=0
@@ -126,7 +126,7 @@ CodePage=1252
 [Version Info Keys]
 [Version Info Keys]
 CompanyName=Open Source
 CompanyName=Open Source
 FileDescription=IDE for Lua 5.0.2
 FileDescription=IDE for Lua 5.0.2
-FileVersion=2.4.1.944
+FileVersion=2.4.1.945
 InternalName=LuaEdit
 InternalName=LuaEdit
 LegalCopyright=LuaEdit Copyright 2004-2005 ©
 LegalCopyright=LuaEdit Copyright 2004-2005 ©
 LegalTrademarks=
 LegalTrademarks=

BIN
LuaEdit/LuaEdit.res


+ 2 - 0
LuaEdit/Main.pas

@@ -1052,6 +1052,7 @@ begin
   end;
   end;
 
 
   pLuaUnit.synUnit.Refresh;
   pLuaUnit.synUnit.Refresh;
+  frmBreakpoints.RefreshBreakpointList;
 end;
 end;
 
 
 procedure TDebugSupportPlugin.LinesDeleted(FirstLine, Count: integer);
 procedure TDebugSupportPlugin.LinesDeleted(FirstLine, Count: integer);
@@ -1070,6 +1071,7 @@ begin
   end;
   end;
 
 
   pLuaUnit.synUnit.Refresh;
   pLuaUnit.synUnit.Refresh;
+  frmBreakpoints.RefreshBreakpointList;
 end;
 end;
 
 
 ///////////////////////////////////////////////////////////////////
 ///////////////////////////////////////////////////////////////////