Fix harmless unused parameter warnings in minimal build.

No real changes, just add some wxUnusedVar() to avoid warnings about
parameters unused in some non-default build configurations.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66090 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2010-11-10 13:52:17 +00:00
parent f422aafede
commit 357f4c818d
3 changed files with 7 additions and 1 deletions

View File

@@ -672,6 +672,8 @@ bool wxBitmap::LoadFile( const wxString &name, wxBitmapType type )
else else
#endif #endif
{ {
wxUnusedVar(type); // The type is detected automatically by GDK.
UnRef(); UnRef();
GdkPixbuf* pixbuf = gdk_pixbuf_new_from_file(name.fn_str(), NULL); GdkPixbuf* pixbuf = gdk_pixbuf_new_from_file(name.fn_str(), NULL);
if (pixbuf) if (pixbuf)

View File

@@ -91,10 +91,12 @@ void wxGUIEventLoop::WakeUp()
extern "C" extern "C"
{ {
static gboolean wx_on_channel_event(GIOChannel * WXUNUSED_UNLESS_DEBUG(channel), static gboolean wx_on_channel_event(GIOChannel *channel,
GIOCondition condition, GIOCondition condition,
gpointer data) gpointer data)
{ {
wxUnusedVar(channel); // Unused if !wxUSE_LOG || !wxDEBUG_LEVEL
wxLogTrace(wxTRACE_EVT_SOURCE, wxLogTrace(wxTRACE_EVT_SOURCE,
"wx_on_channel_event, fd=%d, condition=%08x", "wx_on_channel_event, fd=%d, condition=%08x",
g_io_channel_unix_get_fd(channel), condition); g_io_channel_unix_get_fd(channel), condition);

View File

@@ -1307,6 +1307,8 @@ bool wxAppTraits::CheckForRedirectedIO(wxExecuteData& execData)
return hasIO; return hasIO;
#else // !HAS_PIPE_INPUT_STREAM #else // !HAS_PIPE_INPUT_STREAM
wxUnusedVar(execData);
return false; return false;
#endif // HAS_PIPE_INPUT_STREAM/!HAS_PIPE_INPUT_STREAM #endif // HAS_PIPE_INPUT_STREAM/!HAS_PIPE_INPUT_STREAM
} }