From af0b20630c6820b704e976284e3be27bea6aaf85 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 27 Oct 2010 21:41:55 +0000 Subject: [PATCH] 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 --- include/wx/osx/notebook.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- 2.50.0