trayicon example: fixed compilation with fpc 2.2.1 and higher on darwin

git-svn-id: trunk@15313 -
This commit is contained in:
vincents 2008-06-05 07:45:39 +00:00
parent f2c437b0e5
commit a7bba2a00d

View File

@ -70,7 +70,12 @@ implementation
uses Windows;
{$endif}
{$IFDEF Darwin}
uses FPCMacOSAll;
uses
{$ifdef ver2_2_0}
FPCMacOSAll;
{$else}
MacOSAll;
{$endif}
{$ENDIF}
{ TfrmTrayTest }