Only MSW has a class wxIconLocation. The other platforms have
typedef wxIconLocationBase wxIconLocation; Apple's GCC does not like the mismatch when forward declaring it. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21320 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -30,7 +30,12 @@
|
||||
#include "wx/dynarray.h"
|
||||
|
||||
// fwd decls
|
||||
#if defined(__WXMSW__)
|
||||
class WXDLLEXPORT wxIconLocation;
|
||||
#else
|
||||
class WXDLLEXPORT wxIconLocationBase;
|
||||
typedef wxIconLocationBase wxIconLocation;
|
||||
#endif //defined(__WXMSW__)
|
||||
class WXDLLEXPORT wxFileTypeImpl;
|
||||
class WXDLLEXPORT wxMimeTypesManagerImpl;
|
||||
|
||||
|
Reference in New Issue
Block a user