From 83af2a428e101be54e566bff50d7072c11654a88 Mon Sep 17 00:00:00 2001 From: Scott Talbert Date: Mon, 30 Apr 2018 22:27:31 -0400 Subject: [PATCH] Fix return type of wxNumberEntryDialog::GetValue() in documentation Closes https://github.com/wxWidgets/wxWidgets/pull/796 --- interface/wx/numdlg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/wx/numdlg.h b/interface/wx/numdlg.h index b1bf88b005..e074b0b545 100644 --- a/interface/wx/numdlg.h +++ b/interface/wx/numdlg.h @@ -74,7 +74,7 @@ public: Returns the value that the user has entered if the user has pressed OK, or the original value if the user has pressed Cancel. */ - wxString GetValue() const; + long GetValue() const; };