mirror of
https://github.com/wxWidgets/wxWidgets.git
synced 2026-08-17 17:02:51 +08:00
Fix harmless unused parameter warning in wxOSX
Add missing WXUNUSED(). Closes #25880.
This commit is contained in:
committed by
Vadim Zeitlin
parent
0135b809c4
commit
33b289bb9b
@@ -27,7 +27,7 @@ protected:
|
||||
m_attrString(nullptr)
|
||||
{}
|
||||
|
||||
void Parse(const wxFont& font, const wxString& markup)
|
||||
void Parse(const wxFont& WXUNUSED(font), const wxString& markup)
|
||||
{
|
||||
const wxCFStringRef label(PrepareText(wxMarkupParser::Strip(markup)));
|
||||
m_attrString = [[NSMutableAttributedString alloc]
|
||||
|
||||
Reference in New Issue
Block a user