From 9d38429920c110bf8a5fb8d0a8c33e82e0adc56f Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 7 Feb 2012 13:48:44 +0000 Subject: [PATCH] Fix wxAboutDialogInfo::GetName() return type in the documentation. wxString is returned by value, not const reference. Closes #13941. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70529 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/aboutdlg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/wx/aboutdlg.h b/interface/wx/aboutdlg.h index 06abdff324..35cd11aa32 100644 --- a/interface/wx/aboutdlg.h +++ b/interface/wx/aboutdlg.h @@ -98,7 +98,7 @@ public: @return Name of the program @see SetName() */ - const wxString& GetName() const; + wxString GetName() const; /** Returns @true if a description string has been specified. -- 2.47.2