[m_cocoaNSWindow setExcludedFromWindowsMenu: YES];
if(style & wxSTAY_ON_TOP)
[m_cocoaNSWindow setLevel:NSFloatingWindowLevel];
- SetTitle(title);
+ [m_cocoaNSWindow setTitle:wxNSStringWithWxString(title)];
return true;
}
// wxTopLevelWindowCocoa misc
// ----------------------------------------------------------------------------
-void wxTopLevelWindowCocoa::SetTitle( const wxString& WXUNUSED(title))
+void wxTopLevelWindowCocoa::SetTitle(const wxString& title)
{
[m_cocoaNSWindow setTitle:wxNSStringWithWxString(title)];
}