Oops, I misremembered the name of wxUnusedVar

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40019 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-07-06 00:01:29 +00:00
parent 81cc4eb227
commit 2713fedc46

View File

@@ -125,8 +125,8 @@ static void MakeWindowTransparent(wxWindow* wnd, int amount)
SetWindowAlpha(handle, float(amount)/ 255.0); SetWindowAlpha(handle, float(amount)/ 255.0);
#else #else
wxUnused(wnd); wxUnusedVar(wnd);
wxUnused(amount); wxUnusedVar(amount);
#endif #endif
} }