]> git.saurik.com Git - wxWidgets.git/commitdiff
1. fixed compilation of wxExecute() for !wxUSE_IPC
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 18 Jan 2000 21:21:33 +0000 (21:21 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 18 Jan 2000 21:21:33 +0000 (21:21 +0000)
2. wxLogStatus() will not assert if there is no statusbar to set text for

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5507 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/logg.cpp
src/msw/utilsexc.cpp

index c38a09de2700549ff203c43fa804ac655615f086..51bbdd6f43e6edcf45e6f107c659db12837ad94d 100644 (file)
@@ -198,7 +198,7 @@ void wxLogGui::DoLog(wxLogLevel level, const wxChar *szString, time_t t)
                         }
                     }
 
                         }
                     }
 
-                    if ( pFrame != NULL )
+                    if ( pFrame && pFrame->GetStatusBar() )
                         pFrame->SetStatusText(szString);
                 }
 #endif // wxUSE_STATUSBAR
                         pFrame->SetStatusText(szString);
                 }
 #endif // wxUSE_STATUSBAR
index 6f2ee557578da7ca0a0da5a35cabf77eeb20400b..9429ecb4f7f45c1613a6516d8ce9cc12fff4d731 100644 (file)
@@ -74,7 +74,9 @@
 #endif
 #include <stdarg.h>
 
 #endif
 #include <stdarg.h>
 
-#include "wx/dde.h"         // for WX_DDE hack in wxExecute
+#if wxUSE_IPC
+    #include "wx/dde.h"         // for WX_DDE hack in wxExecute
+#endif // wxUSE_IPC
 
 // ----------------------------------------------------------------------------
 // constants
 
 // ----------------------------------------------------------------------------
 // constants
@@ -177,12 +179,13 @@ LRESULT APIENTRY _EXPORT wxExecuteWindowCbk(HWND hWnd, UINT message,
         return DefWindowProc(hWnd, message, wParam, lParam);
     }
 }
         return DefWindowProc(hWnd, message, wParam, lParam);
     }
 }
-#endif
+#endif // Win32
 
 long wxExecute(const wxString& cmd, bool sync, wxProcess *handler)
 {
     wxCHECK_MSG( !!cmd, 0, wxT("empty command in wxExecute") );
 
 
 long wxExecute(const wxString& cmd, bool sync, wxProcess *handler)
 {
     wxCHECK_MSG( !!cmd, 0, wxT("empty command in wxExecute") );
 
+#if wxUSE_IPC
     // DDE hack: this is really not pretty, but we need to allow this for
     // transparent handling of DDE servers in wxMimeTypesManager. Usually it
     // returns the command which should be run to view/open/... a file of the
     // DDE hack: this is really not pretty, but we need to allow this for
     // transparent handling of DDE servers in wxMimeTypesManager. Usually it
     // returns the command which should be run to view/open/... a file of the
@@ -247,6 +250,7 @@ long wxExecute(const wxString& cmd, bool sync, wxProcess *handler)
         }
     }
     else
         }
     }
     else
+#endif // wxUSE_IPC
     {
         // no DDE
         command = cmd;
     {
         // no DDE
         command = cmd;
@@ -410,6 +414,7 @@ long wxExecute(const wxString& cmd, bool sync, wxProcess *handler)
         return pi.dwProcessId;
     }
 
         return pi.dwProcessId;
     }
 
+#if wxUSE_IPC
     // second part of DDE hack: now establish the DDE conversation with the
     // just launched process
     if ( !!ddeServer )
     // second part of DDE hack: now establish the DDE conversation with the
     // just launched process
     if ( !!ddeServer )
@@ -423,6 +428,7 @@ long wxExecute(const wxString& cmd, bool sync, wxProcess *handler)
             wxLogError(_("Couldn't launch DDE server '%s'."), command.c_str());
         }
     }
             wxLogError(_("Couldn't launch DDE server '%s'."), command.c_str());
         }
     }
+#endif // wxUSE_IPC
 
     if ( !sync )
     {
 
     if ( !sync )
     {