From: Vadim Zeitlin Date: Wed, 13 Aug 2003 22:33:59 +0000 (+0000) Subject: fixed unused variable (replaces patch 788090) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/1b47bebc987a6dd4fb749c83f66ca5d5050d642b fixed unused variable (replaces patch 788090) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22827 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/utilsexc.cpp b/src/msw/utilsexc.cpp index f1408c299e..7046329ee5 100644 --- a/src/msw/utilsexc.cpp +++ b/src/msw/utilsexc.cpp @@ -852,6 +852,12 @@ long wxExecute(const wxString& cmd, int flags, wxProcess *handler) // ok, process ready to accept DDE requests ok = wxExecuteDDE(ddeServer, ddeTopic, ddeCommand); } + + if ( !ok ) + { + wxLogDebug(_T("Failed to send DDE request to the process \"%s\"."), + cmd.c_str()); + } } #endif // wxUSE_IPC