Avoid harmless unused parameter warning in wxUniv build

Just add wxUnusedVar() to suppress it.
This commit is contained in:
Vadim Zeitlin
2020-02-17 19:39:01 +01:00
parent 3a15e9f943
commit 80141760e8

View File

@@ -2676,7 +2676,9 @@ bool wxWindowMSW::MSWProcessMessage(WXMSG* pMsg)
return true; return true;
} }
} }
#endif // __WXUNIVERSAL__ #else // __WXUNIVERSAL__
wxUnusedVar(pMsg);
#endif // !__WXUNIVERSAL__/__WXUNIVERSAL__
#if wxUSE_TOOLTIPS #if wxUSE_TOOLTIPS
if ( m_tooltip ) if ( m_tooltip )