From 0030a372948d403e6f9041cac483bdf07998e483 Mon Sep 17 00:00:00 2001 From: macpgmr Date: Tue, 19 Jan 2016 21:52:33 +0000 Subject: [PATCH] Minor change so it compiles with Laz 1.6. git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@4444 8e941d3f-bd1b-0410-a28a-d453659cc2b4 --- components/orpheus/ovctable.pas | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/orpheus/ovctable.pas b/components/orpheus/ovctable.pas index 4a13447da..2c6a0569d 100644 --- a/components/orpheus/ovctable.pas +++ b/components/orpheus/ovctable.pas @@ -5417,7 +5417,8 @@ procedure TOvcCustomTable.ctimQueryOptions(var Msg : TMessage); {$IFNDEF LCL} Msg.Result := longint(word(FOptions)); {$ELSE} - Msg.Result := longint(FOptions); +// Msg.Result := longint(FOptions); //this used to compile - not sure what changed in Laz 1.6 + Msg.Result := longint(word(FOptions)); {$ENDIF} end; {--------}