X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/39fb805670c28f2977f7336633a191a432ef433c..2b3416df5d2fe261c67dfc08156ab5745e28c1af:/interface/aboutdlg.h diff --git a/interface/aboutdlg.h b/interface/aboutdlg.h index 5420dc3fc2..1688a5a45c 100644 --- a/interface/aboutdlg.h +++ b/interface/aboutdlg.h @@ -47,21 +47,21 @@ public: /** Adds an artist name to be shown in the program credits. - + @see SetArtists() */ void AddArtist(const wxString& artist); /** Adds a developer name to be shown in the program credits. - + @see SetDevelopers() */ void AddDeveloper(const wxString& developer); /** Adds a documentation writer name to be shown in the program credits. - + @see SetDocWriters() */ void AddDocWriter(const wxString& docwriter); @@ -72,14 +72,14 @@ public: translation of the string @c translator-credits from the currently used message catalog -- this can be used to show just the name of the translator of the program in the current language. - + @see SetTranslators() */ void AddTranslator(const wxString& translator); /** Sets the the list of artists to be shown in the program credits. - + @see AddArtist() */ void SetArtists(const wxArrayString& artists); @@ -99,14 +99,14 @@ public: /** Set the list of developers of the program. - + @see AddDeveloper() */ void SetDevelopers(const wxArrayString& developers); /** Set the list of documentation writers. - + @see AddDocWriter() */ void SetDocWriters(const wxArrayString& docwriters); @@ -190,15 +190,17 @@ public: info.SetName(_("My Program")); info.SetVersion(_("1.2.3 Beta")); info.SetDescription(_("This program does something great.")); - info.SetCopyright(_T("(C) 2007 Me my@email.addre.ss")); + info.SetCopyright(_T("(C) 2007 Me ")); wxAboutBox(info); } @endcode - Please see the @ref page_utils_samples_dialogs for more examples of - using this function and wxAboutDialogInfo for the description of the - information which can be shown in the about dialog. + Please see the @ref page_samples_dialogs for more examples of using this + function and wxAboutDialogInfo for the description of the information which + can be shown in the about dialog. + + @header{wx/aboutdlg.h} */ void wxAboutBox(const wxAboutDialogInfo& info); @@ -210,10 +212,12 @@ void wxAboutBox(const wxAboutDialogInfo& info); custom controls to it (customizing the native dialog is not currently supported). - See the @ref page_utils_samples_dialogs for an example of about dialog + See the @ref page_samples_dialogs for an example of about dialog customization. @see wxAboutDialogInfo + + @header{wx/aboutdlg.h} */ void wxGenericAboutBox(const wxAboutDialogInfo& info);