From: Vadim Zeitlin Date: Wed, 14 Mar 2007 13:39:30 +0000 (+0000) Subject: implement Set/GetTitle() (last part of patch 1679337) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/65aeaf19f6781193697d28f868901a80ee623396 implement Set/GetTitle() (last part of patch 1679337) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44802 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/cocoa/toplevel.mm b/src/cocoa/toplevel.mm index 842251756b..c6bbd38319 100644 --- a/src/cocoa/toplevel.mm +++ b/src/cocoa/toplevel.mm @@ -144,7 +144,7 @@ bool wxTopLevelWindowCocoa::Create(wxWindow *parent, [m_cocoaNSWindow setExcludedFromWindowsMenu: YES]; if(style & wxSTAY_ON_TOP) [m_cocoaNSWindow setLevel:NSFloatingWindowLevel]; - [m_cocoaNSWindow setTitle:wxNSStringWithWxString(title)]; + SetTitle(title); return true; } @@ -334,13 +334,12 @@ void wxTopLevelWindowCocoa::OnCloseWindow(wxCloseEvent& event) void wxTopLevelWindowCocoa::SetTitle( const wxString& WXUNUSED(title)) { - // TODO + [m_cocoaNSWindow setTitle:wxNSStringWithWxString(title)]; } wxString wxTopLevelWindowCocoa::GetTitle() const { - // TODO - return wxEmptyString; + return wxStringWithNSString([m_cocoaNSWindow title]); } bool wxTopLevelWindowCocoa::ShowFullScreen(bool show, long style)