]> git.saurik.com Git - wxWidgets.git/commitdiff
removed default argument in the function definition
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 8 Oct 2006 23:07:34 +0000 (23:07 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 8 Oct 2006 23:07:34 +0000 (23:07 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41758 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/univ/notebook.cpp

index 7a72aaf22ec8967032253878c83bc7a954a697ed..7ec0981b86a6793e037006f45099fea248baac56 100644 (file)
@@ -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") );