git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44802
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
[m_cocoaNSWindow setExcludedFromWindowsMenu: YES];
if(style & wxSTAY_ON_TOP)
[m_cocoaNSWindow setLevel:NSFloatingWindowLevel];
- [m_cocoaNSWindow setTitle:wxNSStringWithWxString(title)];
+ SetTitle(title);
return true;
}
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)