]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/filedlg.cpp
applied patch for runtime loading of hhctrl.ocx
[wxWidgets.git] / src / msw / filedlg.cpp
index b64a9f842c9db3e38b5ef0ee402fe65e8cc0e9b3..73a9a8128d75779c7b4fd75f8475eeac9710a31d 100644 (file)
@@ -193,7 +193,7 @@ wxString wxFileSelectorEx(const wxChar *title,
 
 wxFileDialog::wxFileDialog(wxWindow *parent, const wxString& message,
         const wxString& defaultDir, const wxString& defaultFileName, const wxString& wildCard,
-        long style, const wxPoint& pos)
+        long style, const wxPoint& WXUNUSED(pos))
 {
     m_message = message;
     m_dialogStyle = style;
@@ -329,8 +329,8 @@ int wxFileDialog::ShowModal()
 
     //== Execute FileDialog >>=================================================
 
-    bool success = (m_dialogStyle & wxSAVE) ? (GetSaveFileName(&of) != 0)
-                                            : (GetOpenFileName(&of) != 0);
+    bool success = (m_dialogStyle & wxSAVE ? GetSaveFileName(&of)
+                                           : GetOpenFileName(&of)) != 0;
 
     DWORD errCode = CommDlgExtendedError();