Replace wx_static_cast/wx_const_cast/wx_reinterpret_cast with the function-style casts
See #17655.
This commit is contained in:
@@ -89,7 +89,7 @@ public:
|
||||
// wxMSW is one of the platforms where the generic implementation
|
||||
// of wxFilePickerCtrl is used...
|
||||
|
||||
wxButton *pButt = wx_static_cast(wxButton*, myFilePickerCtrl->GetPickerCtrl());
|
||||
wxButton *pButt = static_cast<wxButton*>(myFilePickerCtrl->GetPickerCtrl());
|
||||
if (pButt)
|
||||
pButt->SetLabel("Custom browse string");
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user