Added missing include and missing underscores
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41719 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
89fad939ec
commit
c147c966df
@ -27,9 +27,9 @@
|
||||
|
||||
#ifndef WX_PRECOMP
|
||||
#include "wx/sizer.h"
|
||||
|
||||
#include "wx/statbmp.h"
|
||||
#include "wx/stattext.h"
|
||||
#include "wx/button.h"
|
||||
#endif //WX_PRECOMP
|
||||
|
||||
#include "wx/aboutdlg.h"
|
||||
@ -69,13 +69,13 @@ wxString wxAboutDialogInfo::GetDescriptionAndCredits() const
|
||||
s << _T('\n') << _("Developed by ") << AllAsString(GetDevelopers());
|
||||
|
||||
if ( HasDocWriters() )
|
||||
s << _T('\n') << ("Documentation by ") << AllAsString(GetDocWriters());
|
||||
s << _T('\n') << _("Documentation by ") << AllAsString(GetDocWriters());
|
||||
|
||||
if ( HasArtists() )
|
||||
s << _T('\n') << ("Graphics art by ") << AllAsString(GetArtists());
|
||||
s << _T('\n') << _("Graphics art by ") << AllAsString(GetArtists());
|
||||
|
||||
if ( HasTranslators() )
|
||||
s << _T('\n') << ("Translations by ") << AllAsString(GetTranslators());
|
||||
s << _T('\n') << _("Translations by ") << AllAsString(GetTranslators());
|
||||
|
||||
return s;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user