]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/utilscmn.cpp
add wxScrollHelper::ShowScrollbars() (implemented for GTK only right now, generic...
[wxWidgets.git] / src / common / utilscmn.cpp
index dc2a79628fbfe1a5e04adc740de8a19a93f47597..85e35c508236ead5b87218ade6eed99fde2c3fa6 100644 (file)
@@ -436,7 +436,7 @@ bool wxGetEmailAddress(wxChar *address, int maxSize)
     if ( !email )
         return false;
 
-    wxStrlcpy(address, email, maxSize);
+    wxStrlcpy(address, email.t_str(), maxSize);
 
     return true;
 }
@@ -962,7 +962,11 @@ bool wxLaunchDefaultApplication(const wxString& document, int flags)
     WinStruct<SHELLEXECUTEINFO> sei;
     sei.lpFile = document.wx_str();
     sei.lpVerb = _T("open");
+#ifdef __WXWINCE__
+    sei.nShow = SW_SHOWNORMAL; // SW_SHOWDEFAULT not defined under CE (#10216)
+#else
     sei.nShow = SW_SHOWDEFAULT;
+#endif
 
     // avoid Windows message box in case of error for consistency with
     // wxLaunchDefaultBrowser() even if don't show the error ourselves in this