silence incorrect warning about missing return value

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67205 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2011-03-16 06:34:20 +00:00
parent 31c659e82e
commit a624c97f0a

View File

@@ -214,9 +214,9 @@ int wxGUIEventLoop::DoDispatchTimeout(unsigned long timeout)
return -1;
default:
wxFAIL_MSG("unknown response code");
return -1;
break;
}
return -1;
}
else
{