Skip to content

Commit

Permalink
Сообщение в Linux сделал тольков DebugBreak
Browse files Browse the repository at this point in the history
Ошибку форматирования в Linux приглушил
  • Loading branch information
miks1965 committed Sep 2, 2023
1 parent d2ec6d6 commit 81ad1a2
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Configuration/GlobalAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "3348";
public const string Revision = "3349";

public const string MainVersion = Major + "." + Minor;
public const string FullVersion = Major + "." + Minor + "." + Build + "." + Revision;
Expand Down
4 changes: 2 additions & 2 deletions Configuration/Version.defs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%COREVERSION%=0
%REVISION%=3348
%MINOR%=9
%REVISION%=3349
%COREVERSION%=0
%MAJOR%=3
2 changes: 1 addition & 1 deletion Release/pabcversion.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.9.0.3348
3.9.0.3349
2 changes: 1 addition & 1 deletion ReleaseGenerators/PascalABCNET_version.nsh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
!define VERSION '3.9.0.3348'
!define VERSION '3.9.0.3349'
2 changes: 2 additions & 0 deletions VisualPascalABCNETLinux/DS/Tools.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ public class Tools
public static string GetTextFromClipboard()
{
IDataObject dataObject = Clipboard.GetDataObject();
if (dataObject == null)
return "";
if (dataObject.GetDataPresent(DataFormats.Text))
{
// Yes it is, so display it in a text box.
Expand Down
4 changes: 3 additions & 1 deletion VisualPascalABCNETLinux/IB/Debugger/Debugger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -431,8 +431,10 @@ public void Start(string fileName, string sourceFileName, string workingDirector

public void NullProcessHandleIfNeed(string fileName)
{
#if DEBUG
Console.WriteLine("null process handle");
if (string.Compare(fileName,this.ExeFileName,true)==0)
#endif
if (string.Compare(fileName,this.ExeFileName,true)==0)
{
FileName = null;
handle = 0;
Expand Down

0 comments on commit 81ad1a2

Please sign in to comment.