VC6 compilation fix after last change (thanks buildbot)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56588 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-10-30 00:32:24 +00:00
parent b56d1061bb
commit 22a9029e23

View File

@@ -680,7 +680,8 @@ void wxTCPEventHandler::Client_OnRequest(wxSocketEvent &event)
const wxString topic = connection->m_topic; const wxString topic = connection->m_topic;
wxString item; wxString item;
switch ( const int msg = streams->Read8() ) const int msg = streams->Read8();
switch ( msg )
{ {
case IPC_EXECUTE: case IPC_EXECUTE:
{ {