Don't use "/*" inside a C comment.
gcc warns about it so replace the outer comment with "#if 0" to avoid it. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66567 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
90e10cd1be
commit
cfa7a6e239
@ -83,10 +83,10 @@ wxPROPERTY( ValueString, wxString, SetValue, GetValue, \
|
||||
wxEMPTY_PARAMETER_VALUE, 0 /*flags*/, wxT("Helpstring"), wxT("group")) ;
|
||||
wxPROPERTY( Value, int, SetValue, GetValue, 0, 0 /*flags*/, \
|
||||
wxT("Helpstring"), wxT("group"))
|
||||
/*
|
||||
wxPROPERTY( Min, int, SetMin, GetMin, 0, 0 /*flags, wxT("Helpstring"), wxT("group") )
|
||||
wxPROPERTY( Max, int, SetMax, GetMax, 0, 0 /*flags, wxT("Helpstring"), wxT("group"))
|
||||
*/
|
||||
#if 0
|
||||
wxPROPERTY( Min, int, SetMin, GetMin, 0, 0 /*flags*/, wxT("Helpstring"), wxT("group") )
|
||||
wxPROPERTY( Max, int, SetMax, GetMax, 0, 0 /*flags*/, wxT("Helpstring"), wxT("group"))
|
||||
#endif
|
||||
wxPROPERTY_FLAGS( WindowStyle, wxSpinCtrlStyle, long, SetWindowStyleFlag, \
|
||||
GetWindowStyleFlag, wxEMPTY_PARAMETER_VALUE, 0 /*flags*/, \
|
||||
wxT("Helpstring"), wxT("group")) // style
|
||||
|
Loading…
Reference in New Issue
Block a user