]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/utilsexc.cpp
xti additions / changes, trying to reduce dependencies
[wxWidgets.git] / src / msw / utilsexc.cpp
index 4e9958f80168cf2bbfb6419485cef82600ba6890..7046329ee5a42f54e3b9692c9548d589d7d99d08 100644 (file)
@@ -17,7 +17,7 @@
 // headers
 // ----------------------------------------------------------------------------
 
 // headers
 // ----------------------------------------------------------------------------
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
     #pragma implementation
 #endif
 
     #pragma implementation
 #endif
 
@@ -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);
         }
                 // 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
 
     }
 #endif // wxUSE_IPC