From 8b6fd08a4163a790ec1168ba0623e51bfe4f8fea Mon Sep 17 00:00:00 2001 From: David Elliott Date: Sun, 18 Mar 2007 19:26:44 +0000 Subject: [PATCH] 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 --- 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 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)]; } -- 2.45.2