summaryrefslogtreecommitdiff
path: root/examples/gui/video_vlc
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graemeg@gmail.com>2015-02-22 11:37:25 +0000
committerGraeme Geldenhuys <graemeg@gmail.com>2015-02-22 11:37:25 +0000
commitaefc00c620ffaa5485f182aff7fc6bb75a1a1ec8 (patch)
tree75c56085a1f8b157cdd1b05bcc548f0735496aeb /examples/gui/video_vlc
parent88e60d1c664c1f73c1e3855e711c5e5ba0becfa2 (diff)
downloadfpGUI-aefc00c620ffaa5485f182aff7fc6bb75a1a1ec8.tar.xz
vlc: fix compiler error with FPC 3.0
Diffstat (limited to 'examples/gui/video_vlc')
-rw-r--r--examples/gui/video_vlc/frmvlcplayer.pas2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/gui/video_vlc/frmvlcplayer.pas b/examples/gui/video_vlc/frmvlcplayer.pas
index 48429e5b..456ac202 100644
--- a/examples/gui/video_vlc/frmvlcplayer.pas
+++ b/examples/gui/video_vlc/frmvlcplayer.pas
@@ -336,6 +336,8 @@ procedure TVLCPlayerDemoForm.UpdateTimeLapse(const Msg: String);
begin
FMsg := Msg;
TThread.Synchronize(nil, @self.DoGUIUpdateTimeLapse);
+// This could also be used in FPC 3.0+
+// TThread.Queue(nil, @DoGUIUpdateTimeLapse);
end;
procedure TVLCPlayerDemoForm.DoPlay(sender: TObject);