From: Vadim Zeitlin Date: Tue, 7 Feb 2012 13:48:44 +0000 (+0000) Subject: Fix wxAboutDialogInfo::GetName() return type in the documentation. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/9d38429920c110bf8a5fb8d0a8c33e82e0adc56f?ds=inline 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 --- 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.