]> git.saurik.com Git - wxWidgets.git/commitdiff
Reverted changes that set m_widget to NULL in native
authorRobert Roebling <robert@roebling.de>
Sun, 28 Nov 2004 13:08:26 +0000 (13:08 +0000)
committerRobert Roebling <robert@roebling.de>
Sun, 28 Nov 2004 13:08:26 +0000 (13:08 +0000)
    GTK+ dialogs for now. The problem persists, that
    when quitting the native file dialog with ESC, the
    dialog will be destroyed twice.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30807 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/filedlg.cpp
src/gtk/msgdlg.cpp
src/gtk1/filedlg.cpp
src/gtk1/msgdlg.cpp

index 6234348501f40c3bde166d27efa0f4a03b99b6a8..20bc8b05589b8c6752b62376a152ebcdf966f362 100644 (file)
@@ -108,10 +108,10 @@ static void gtk_filedialog_response_callback(GtkWidget *w,
 {
     wxapp_install_idle_handler();
     
-    if (response == GTK_RESPONSE_CANCEL)
-        gtk_filedialog_cancel_callback(w, dialog);
-    else
+    if (response == GTK_RESPONSE_ACCEPT)
         gtk_filedialog_ok_callback(w, dialog);
+    else
+        gtk_filedialog_cancel_callback(w, dialog);
 }
 
 //-----------------------------------------------------------------------------
@@ -182,7 +182,6 @@ wxFileDialog::wxFileDialog(wxWindow *parent, const wxString& message,
 
 wxFileDialog::~wxFileDialog()
 {
-    m_widget = NULL;
 }
 
 void wxFileDialog::GetFilenames(wxArrayString& files) const 
index 66a4b47b666dce093b9583f993bdd2b16b23fa57..6ca49154810bada7180376d09d45ba4b0f230abe 100644 (file)
@@ -97,7 +97,6 @@ wxMessageDialog::wxMessageDialog(wxWindow *parent,
  
 wxMessageDialog::~wxMessageDialog()
 {
-    m_widget = NULL;
 }
 
 int wxMessageDialog::ShowModal()
index 6234348501f40c3bde166d27efa0f4a03b99b6a8..20bc8b05589b8c6752b62376a152ebcdf966f362 100644 (file)
@@ -108,10 +108,10 @@ static void gtk_filedialog_response_callback(GtkWidget *w,
 {
     wxapp_install_idle_handler();
     
-    if (response == GTK_RESPONSE_CANCEL)
-        gtk_filedialog_cancel_callback(w, dialog);
-    else
+    if (response == GTK_RESPONSE_ACCEPT)
         gtk_filedialog_ok_callback(w, dialog);
+    else
+        gtk_filedialog_cancel_callback(w, dialog);
 }
 
 //-----------------------------------------------------------------------------
@@ -182,7 +182,6 @@ wxFileDialog::wxFileDialog(wxWindow *parent, const wxString& message,
 
 wxFileDialog::~wxFileDialog()
 {
-    m_widget = NULL;
 }
 
 void wxFileDialog::GetFilenames(wxArrayString& files) const 
index 66a4b47b666dce093b9583f993bdd2b16b23fa57..6ca49154810bada7180376d09d45ba4b0f230abe 100644 (file)
@@ -97,7 +97,6 @@ wxMessageDialog::wxMessageDialog(wxWindow *parent,
  
 wxMessageDialog::~wxMessageDialog()
 {
-    m_widget = NULL;
 }
 
 int wxMessageDialog::ShowModal()