]> git.saurik.com Git - wxWidgets.git/commitdiff
wxTopLevelWindowCocoa::SetTitle title parameter is used as of VZ 1.35.
authorDavid Elliott <dfe@tgwbd.org>
Sun, 18 Mar 2007 19:26:44 +0000 (19:26 +0000)
committerDavid Elliott <dfe@tgwbd.org>
Sun, 18 Mar 2007 19:26:44 +0000 (19:26 +0000)
Compilation fix.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44896 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/cocoa/toplevel.mm

index 26367980fcc9bacdf029df4d5de78af9727ad660..1a5379ff5290992be112e8699a304870384b545e 100644 (file)
@@ -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)];
 }