The SetTitle title parameter is no longer unused (trunk 44896)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@47999 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Elliott
2007-08-10 05:17:27 +00:00
parent c0f84d8c9a
commit 4ac1930ee2

View File

@@ -339,7 +339,7 @@ void wxTopLevelWindowCocoa::OnCloseWindow(wxCloseEvent& event)
// wxTopLevelWindowCocoa misc
// ----------------------------------------------------------------------------
void wxTopLevelWindowCocoa::SetTitle( const wxString& WXUNUSED(title))
void wxTopLevelWindowCocoa::SetTitle(const wxString& title)
{
[m_cocoaNSWindow setTitle:wxNSStringWithWxString(title)];
}