Skip to content

Commit

Permalink
fix example
Browse files Browse the repository at this point in the history
  • Loading branch information
dliw committed Aug 28, 2014
1 parent 7855622 commit 064ff38
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Examples/GT2Minimal/minimal.lpr
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,12 @@ procedure bclicked(widget : PGtkWidget; data : gpointer); cdecl;
ExitCode := cef_execute_process(@MainArgs, nil, nil);
If ExitCode >= 0 then Halt(ExitCode);

Settings.multi_threaded_message_loop := False;
Settings.single_process := False;
Settings.multi_threaded_message_loop := Ord(False);
Settings.single_process := Ord(False);
Settings.context_safety_implementation := 0;
Settings.log_severity := LOGSEVERITY_INFO;
Settings.uncaught_exception_stack_size := 20;
Settings.release_dcheck_enabled := TRUE;
Settings.release_dcheck_enabled := Ord(True);

cef_initialize(@MainArgs, @Settings, nil, nil);

Expand Down

0 comments on commit 064ff38

Please sign in to comment.