Commit 78a58e04 authored by Wayne Stambaugh's avatar Wayne Stambaugh

Fixed build error for missing wxNullPtr definition building against wxWidgets < 2.9

parent c660028b
......@@ -62,6 +62,11 @@
#define MAYBE_RESIZE_BORDER 0 // no resizeable border
#endif
// wxNullPtr is not defined prior to wxWidget 2.9.0.
#if !wxCHECK_VERSION( 2, 9, 0 )
#define wxNullPtr ((void *)NULL)
#endif
#include "config.h"
#endif /* FCTSYS_H */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment