X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/bc48a5d75e6847f7afe434f9c50d7aa32b2ef159..115be92b4fb91700b5f9d4311ac0db84ecceaa23:/include/wx/gtk/filepicker.h diff --git a/include/wx/gtk/filepicker.h b/include/wx/gtk/filepicker.h index 5a72f6f8a4..e1bd484781 100644 --- a/include/wx/gtk/filepicker.h +++ b/include/wx/gtk/filepicker.h @@ -36,7 +36,8 @@ \ virtual bool Destroy() \ { \ - m_dialog->Destroy(); \ + if (m_dialog) \ + m_dialog->Destroy(); \ return wxButton::Destroy(); \ } \ \ @@ -48,7 +49,8 @@ /* so, override wxButton::GTKGetWindow and return NULL as GTK+ doesn't */ \ /* give us access to the internal GdkWindow of a GtkFileChooserButton */ \ protected: \ - virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const \ + virtual GdkWindow * \ + GTKGetWindow(wxArrayGdkWindows& WXUNUSED(windows)) const \ { return NULL; }