From 77d7d3a014213b135a7a984435be15748cad4b2c Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 9 Aug 2017 20:59:29 +0200 Subject: [PATCH] Fix wxWizard::HasPrevPage() documentation Replace the wrongly copied "last" with "first". --- interface/wx/wizard.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/wx/wizard.h b/interface/wx/wizard.h index 53b66e201b..9c29f7e642 100644 --- a/interface/wx/wizard.h +++ b/interface/wx/wizard.h @@ -504,7 +504,7 @@ public: virtual bool HasNextPage(wxWizardPage* page); /** - Returns @true if this page is not the last one in the wizard. + Returns @true if this page is not the first one in the wizard. The base class version implements this by calling @ref wxWizardPage::GetPrev "page->GetPrev" but this could be undesirable if, for example, the pages are created on demand only.