Browse Source

* really all TMonitor shortcuts pass through the results

florian 1 year ago
parent
commit
569c3fb49f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      rtl/inc/monitor.inc

+ 1 - 1
rtl/inc/monitor.inc

@@ -200,7 +200,7 @@ end;
 function MonitorTryEnter(Const aObject: TObject): Boolean;
 
 begin
-  TMonitor.TryEnter(aObject);
+  Result:=TMonitor.TryEnter(aObject);
 end;