]> git.saurik.com Git - wxWidgets.git/commitdiff
remove ancient SetModal(), it was deprecated long ago and is not present in wxMSW...
authorPaul Cornett <paulcor@bullseye.com>
Thu, 3 Jan 2013 05:09:20 +0000 (05:09 +0000)
committerPaul Cornett <paulcor@bullseye.com>
Thu, 3 Jan 2013 05:09:20 +0000 (05:09 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73334 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/gtk/dialog.h
interface/wx/dialog.h
src/gtk/dialog.cpp

index 8f2b3284ede8d3ca51d0054ff2a56198bec4a0db..120611ac983934a6ef32602fc673521bf707fbdc 100644 (file)
@@ -39,7 +39,6 @@ public:
     virtual int ShowModal();
     virtual void EndModal( int retCode );
     virtual bool IsModal() const;
     virtual int ShowModal();
     virtual void EndModal( int retCode );
     virtual bool IsModal() const;
-    void SetModal( bool modal );
 
     // implementation
     // --------------
 
     // implementation
     // --------------
index bb473f43bae5ed1221814c98294adc572c648959..3407302fcd32ff23082244120a8ead77b4040b27 100644 (file)
@@ -554,19 +554,6 @@ public:
     */
     static wxDialogLayoutAdapter* SetLayoutAdapter(wxDialogLayoutAdapter* adapter);
 
     */
     static wxDialogLayoutAdapter* SetLayoutAdapter(wxDialogLayoutAdapter* adapter);
 
-    /**
-        @deprecated This function doesn't work for all ports, just use
-                    ShowModal() to show a modal dialog instead.
-
-        Allows the programmer to specify whether the dialog box is modal
-        (Show() blocks control until the dialog is hidden) or modeless (control
-        returns immediately).
-
-        @param flag
-            If @true, the dialog will be modal, otherwise it will be modeless.
-    */
-    void SetModal(bool flag);
-
     /**
         Sets the return code for this window.
 
     /**
         Sets the return code for this window.
 
index 33a4d6b53f61d2f64c93ff0373ebc1c75c2af0e2..c7ae206ec3affadafe8bb4e144fc92e80276bf3a 100644 (file)
@@ -95,11 +95,6 @@ bool wxDialog::IsModal() const
     return m_modalShowing;
 }
 
     return m_modalShowing;
 }
 
-void wxDialog::SetModal( bool WXUNUSED(flag) )
-{
-    wxFAIL_MSG( wxT("wxDialog:SetModal obsolete now") );
-}
-
 // Workaround for Ubuntu overlay scrollbar, which adds our GtkWindow to a
 // private window group in a GtkScrollbar realize handler. This breaks the grab
 // done by gtk_window_set_modal(), and allows menus and toolbars in the parent
 // Workaround for Ubuntu overlay scrollbar, which adds our GtkWindow to a
 // private window group in a GtkScrollbar realize handler. This breaks the grab
 // done by gtk_window_set_modal(), and allows menus and toolbars in the parent