Make NOP versions of Mac[GS]etMetalAppearance for the other platforms
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29735 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -134,6 +134,12 @@ public:
|
|||||||
#ifdef __WXMAC__
|
#ifdef __WXMAC__
|
||||||
void MacSetMetalAppearance( bool on ) ;
|
void MacSetMetalAppearance( bool on ) ;
|
||||||
bool MacGetMetalAppearance() const ;
|
bool MacGetMetalAppearance() const ;
|
||||||
|
#else
|
||||||
|
%extend {
|
||||||
|
// TODO: Should they raise not implemented or just NOP???
|
||||||
|
void MacSetMetalAppearance( bool on ) { /*wxPyRaiseNotImplemented();*/ }
|
||||||
|
bool MacGetMetalAppearance() const { /*wxPyRaiseNotImplemented();*/ return false; }
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user