From: David Elliott Date: Sun, 18 Mar 2007 19:26:44 +0000 (+0000) Subject: wxTopLevelWindowCocoa::SetTitle title parameter is used as of VZ 1.35. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/8b6fd08a4163a790ec1168ba0623e51bfe4f8fea wxTopLevelWindowCocoa::SetTitle title parameter is used as of VZ 1.35. Compilation fix. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44896 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/cocoa/toplevel.mm b/src/cocoa/toplevel.mm index 26367980fc..1a5379ff52 100644 --- a/src/cocoa/toplevel.mm +++ b/src/cocoa/toplevel.mm @@ -332,7 +332,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)]; }