You've already forked CEF4Delphi
mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2025-11-23 21:34:53 +02:00
Update to CEF 3.3029.1613.g22354a9
- Update to CEF 3.3029.1613.g22354a9 - Bug fix #28 - Added missing functions in uCEFMiscFunctions.pas - Fixed MDIBrowser app close issue. - Changed the CustomExceptionHandler to reraise exceptions with full trace.
This commit is contained in:
@@ -518,7 +518,7 @@ begin
|
||||
end;
|
||||
except
|
||||
on e : exception do
|
||||
CustomExceptionHandler('TVCLClientHandler.Destroy error: ' + e.Message);
|
||||
if CustomExceptionHandler('TVCLClientHandler.Destroy', e) then raise;
|
||||
end;
|
||||
finally
|
||||
inherited Destroy;
|
||||
@@ -546,7 +546,7 @@ begin
|
||||
if (GlobalCEFApp <> nil) then Result := GlobalCEFApp.MultiThreadedMessageLoop;
|
||||
except
|
||||
on e : exception do
|
||||
CustomExceptionHandler('TVCLClientHandler.GetMultithreadApp error: ' + e.Message);
|
||||
if CustomExceptionHandler('TVCLClientHandler.GetMultithreadApp', e) then raise;
|
||||
end;
|
||||
end;
|
||||
|
||||
@@ -558,7 +558,7 @@ begin
|
||||
if (GlobalCEFApp <> nil) then Result := GlobalCEFApp.ExternalMessagePump;
|
||||
except
|
||||
on e : exception do
|
||||
CustomExceptionHandler('TVCLClientHandler.GetExternalMessagePump error: ' + e.Message);
|
||||
if CustomExceptionHandler('TVCLClientHandler.GetExternalMessagePump', e) then raise;
|
||||
end;
|
||||
end;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user