X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..43ff861df48f0837dac98005dd397c5f127ca136:/include/wx/motif/toplevel.h diff --git a/include/wx/motif/toplevel.h b/include/wx/motif/toplevel.h index ae5e79cce9..4144b83a3a 100644 --- a/include/wx/motif/toplevel.h +++ b/include/wx/motif/toplevel.h @@ -52,10 +52,6 @@ public: virtual wxString GetTitle() const { return m_title; } virtual void SetTitle( const wxString& title ) { m_title = title; } - virtual void DoSetSizeHints( int minW, int minH, - int maxW = -1, int maxH = -1, - int incW = -1, int incH = -1 ); - virtual bool SetShape( const wxRegion& region ); WXWidget GetShellWidget() const; @@ -66,16 +62,13 @@ protected: void PreDestroy(); virtual void DoGetPosition(int* x, int* y) const; + virtual void DoSetSizeHints(int minW, int minH, + int maxW, int maxH, + int incW, int incH); private: -#if wxCHECK_VERSION(2,7,0) - // DoDestroy() is not used anywhere else, DoCreate() should also be renamed - // in src/motif/dialog.cpp, frame.cpp and toplevel.cp - #error "Remove DoDestroy() and rename DoCreate() to XmDoCreateTLW(), they were only kept for binary backwards compatibility" -#endif - // really create the Motif widget for TLW - virtual bool DoCreate(wxWindow* parent, + virtual bool XmDoCreateTLW(wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, @@ -83,7 +76,6 @@ private: long style, const wxString& name) = 0; - virtual void DoDestroy() { } wxString m_title; };