From: Vadim Zeitlin Date: Wed, 27 Oct 2010 21:41:55 +0000 (+0000) Subject: wxOSX compilation fix: remove just added extra semicolon. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/af0b20630c6820b704e976284e3be27bea6aaf85?ds=inline wxOSX compilation fix: remove just added extra semicolon. r65931 forgot to remove a now extra semicolon from wx/osx/notebook.h, fix it. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65934 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/osx/notebook.h b/include/wx/osx/notebook.h index 724bfb7dfe..8082d3075b 100644 --- a/include/wx/osx/notebook.h +++ b/include/wx/osx/notebook.h @@ -41,7 +41,7 @@ public: const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0, - const wxString& name = wxNotebookNameStr); + const wxString& name = wxNotebookNameStr) { Create( parent, id, pos, size, style, name ); } // Create() function bool Create(wxWindow *parent,