Force wxUSE_GRAPHICS_CONTEXT to 0 for wxMotif build.

wxGraphicsContext is not implemented in this port.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76748 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2014-06-23 01:08:38 +00:00
parent 8ef1f74818
commit 3c92ebb168

View file

@ -13,3 +13,9 @@
#if !defined(wxUSE_GADGETS) #if !defined(wxUSE_GADGETS)
# define wxUSE_GADGETS 0 # define wxUSE_GADGETS 0
#endif #endif
/* wxGraphicsContext is not implemented in wxMotif */
#if wxUSE_GRAPHICS_CONTEXT
# undef wxUSE_GRAPHICS_CONTEXT
# define wxUSE_GRAPHICS_CONTEXT 0
#endif