fix WinCE compilation: it doesn't know about SW_SHOWDEFAULT (#10216)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57394 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -962,7 +962,11 @@ bool wxLaunchDefaultApplication(const wxString& document, int flags)
|
|||||||
WinStruct<SHELLEXECUTEINFO> sei;
|
WinStruct<SHELLEXECUTEINFO> sei;
|
||||||
sei.lpFile = document.wx_str();
|
sei.lpFile = document.wx_str();
|
||||||
sei.lpVerb = _T("open");
|
sei.lpVerb = _T("open");
|
||||||
|
#ifdef __WXWINCE__
|
||||||
|
sei.nShow = SW_SHOWNORMAL; // SW_SHOWDEFAULT not defined under CE (#10216)
|
||||||
|
#else
|
||||||
sei.nShow = SW_SHOWDEFAULT;
|
sei.nShow = SW_SHOWDEFAULT;
|
||||||
|
#endif
|
||||||
|
|
||||||
// avoid Windows message box in case of error for consistency with
|
// avoid Windows message box in case of error for consistency with
|
||||||
// wxLaunchDefaultBrowser() even if don't show the error ourselves in this
|
// wxLaunchDefaultBrowser() even if don't show the error ourselves in this
|
||||||
|
Reference in New Issue
Block a user