]> git.saurik.com Git - wxWidgets.git/commitdiff
make Set/GetLabel() set and return title in wxTLW, fixes #12371: Dialog::GetLabel...
authorRobert Roebling <robert@roebling.de>
Sat, 21 Aug 2010 09:53:25 +0000 (09:53 +0000)
committerRobert Roebling <robert@roebling.de>
Sat, 21 Aug 2010 09:53:25 +0000 (09:53 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65373 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/gtk/toplevel.h

index 12894ce7be890e52ad388f5bfaa49dfa793025cc..635475bf9a25afe914f3ca88f6f704b951748610 100644 (file)
@@ -72,6 +72,10 @@ public:
     virtual void SetTitle( const wxString &title );
     virtual wxString GetTitle() const { return m_title; }
 
+    virtual void SetLabel(const wxString& label) { SetTitle( label ); }
+    virtual wxString GetLabel() const            { return GetTitle(); }
+
+
     virtual bool SetTransparent(wxByte alpha);
     virtual bool CanSetTransparent();