]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/filedlg.cpp
Applied patch [ 1196827 ] Fixes Assert with wxTreeCtrl::GetSelections on wxMSW
[wxWidgets.git] / src / gtk / filedlg.cpp
index 61925cde04bf84eb4764f15b1f8c91f54538b1ca..04040bd548ed0555849e2f6e55e728df38724953 100644 (file)
@@ -267,6 +267,14 @@ bool wxFileDialog::Show( bool show )
         return wxGenericFileDialog::Show( show );
 }
 
+void wxFileDialog::DoSetSize(int x, int y, int width, int height, int sizeFlags )
+{
+    if (!m_wxwindow)
+        return;
+    else
+        wxGenericFileDialog::DoSetSize( x, y, width, height, sizeFlags );
+}
+
 wxString wxFileDialog::GetPath() const
 {
 #ifdef __WXGTK24__