3.9.0.3523

This commit is contained in:
Mikhalkovich Stanislav 2024-08-06 20:18:57 +03:00
parent 1da2b524a6
commit c18238df39
5 changed files with 13 additions and 6 deletions

View file

@ -15,7 +15,7 @@ internal static class RevisionClass
public const string Major = "3";
public const string Minor = "9";
public const string Build = "0";
public const string Revision = "3522";
public const string Revision = "3523";
public const string MainVersion = Major + "." + Minor;
public const string FullVersion = Major + "." + Minor + "." + Build + "." + Revision;

View file

@ -1,4 +1,4 @@
%COREVERSION%=0
%REVISION%=3522
%MINOR%=9
%REVISION%=3523
%COREVERSION%=0
%MAJOR%=3

View file

@ -1 +1 @@
3.9.0.3522
3.9.0.3523

View file

@ -1 +1 @@
!define VERSION '3.9.0.3522'
!define VERSION '3.9.0.3523'

View file

@ -156,7 +156,14 @@ namespace VisualPascalABC
public void ExecPaste()
{
CurrentCodeFileDocument.Paste(true);
try
{
CurrentCodeFileDocument?.Paste(true);
}
catch (Exception)
{
}
}
internal void NavigationLocationChanged()