Fix test for __WXOSX__ in common code.

Check whether it's defined, not whether it's true.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76941 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2014-07-16 22:55:08 +00:00
parent 8d601fed17
commit c3ba472abb

View File

@ -164,8 +164,8 @@ public:
virtual bool TransferTo( wxPrintData &data ) = 0;
virtual bool TransferFrom( const wxPrintData &data ) = 0;
#if __WXOSX__
// in order to expose functionality already to the result type of the ..PrintData->GetNativeData()
#ifdef __WXOSX__
// in order to expose functionality already to the result type of the ..PrintData->GetNativeData()
virtual void TransferFrom( const wxPageSetupDialogData * ) = 0;
virtual void TransferTo( wxPageSetupDialogData * ) = 0;
#endif