Changeset - r9776:f931ee60c8c5
[Not reviewed]
master
0 1 0
bjarni - 16 years ago 2008-08-01 17:43:11
bjarni@openttd.org
(svn r13913) -Fix (r13893): [OSX] fixed a warning about MAC_OS_X_VERSION_10_5 not being defined on all systems
1 file changed with 14 insertions and 0 deletions:
0 comments (0 inline, 0 general)
src/os/macosx/macos.h
Show inline comments
 
@@ -5,6 +5,20 @@
 
#ifndef MACOS_H
 
#define MACOS_H
 

	
 
/* It would seem that to ensure backward compability we have to ensure that we have defined MAC_OS_X_VERSION_10_x everywhere */
 
#ifndef MAC_OS_X_VERSION_10_3
 
#define MAC_OS_X_VERSION_10_3 1030
 
#endif
 

	
 
#ifndef MAC_OS_X_VERSION_10_4
 
#define MAC_OS_X_VERSION_10_4 1040
 
#endif
 

	
 
#ifndef MAC_OS_X_VERSION_10_5
 
#define MAC_OS_X_VERSION_10_5 1050
 
#endif
 

	
 

	
 
/*
 
 * Functions to show the popup window
 
 * use ShowMacDialog when you want to control title, message and text on the button
0 comments (0 inline, 0 general)