From 76fa43ec36e1dd759572d1d0175c5f6ab2d4851f Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 8 Oct 2006 23:07:34 +0000 Subject: [PATCH] removed default argument in the function definition git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41758 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/univ/notebook.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/univ/notebook.cpp b/src/univ/notebook.cpp index 7a72aaf22e..7ec0981b86 100644 --- a/src/univ/notebook.cpp +++ b/src/univ/notebook.cpp @@ -233,7 +233,7 @@ wxNotebook::~wxNotebook() // wxNotebook page switching // ---------------------------------------------------------------------------- -int wxNotebook::DoSetSelection(size_t nPage, int flags = 0) +int wxNotebook::DoSetSelection(size_t nPage, int flags) { wxCHECK_MSG( IS_VALID_PAGE(nPage), wxNOT_FOUND, _T("invalid notebook page") );