From 4ac1930ee2ea7fad6a80b8d05fec7777b68535bd Mon Sep 17 00:00:00 2001 From: David Elliott Date: Fri, 10 Aug 2007 05:17:27 +0000 Subject: [PATCH] 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 --- src/cocoa/toplevel.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cocoa/toplevel.mm b/src/cocoa/toplevel.mm index b0fa9cd74e..c900dba9c5 100644 --- a/src/cocoa/toplevel.mm +++ b/src/cocoa/toplevel.mm @@ -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)]; }