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:
@@ -27,9 +27,9 @@
|
|||||||
|
|
||||||
#ifndef WX_PRECOMP
|
#ifndef WX_PRECOMP
|
||||||
#include "wx/sizer.h"
|
#include "wx/sizer.h"
|
||||||
|
|
||||||
#include "wx/statbmp.h"
|
#include "wx/statbmp.h"
|
||||||
#include "wx/stattext.h"
|
#include "wx/stattext.h"
|
||||||
|
#include "wx/button.h"
|
||||||
#endif //WX_PRECOMP
|
#endif //WX_PRECOMP
|
||||||
|
|
||||||
#include "wx/aboutdlg.h"
|
#include "wx/aboutdlg.h"
|
||||||
@@ -69,13 +69,13 @@ wxString wxAboutDialogInfo::GetDescriptionAndCredits() const
|
|||||||
s << _T('\n') << _("Developed by ") << AllAsString(GetDevelopers());
|
s << _T('\n') << _("Developed by ") << AllAsString(GetDevelopers());
|
||||||
|
|
||||||
if ( HasDocWriters() )
|
if ( HasDocWriters() )
|
||||||
s << _T('\n') << ("Documentation by ") << AllAsString(GetDocWriters());
|
s << _T('\n') << _("Documentation by ") << AllAsString(GetDocWriters());
|
||||||
|
|
||||||
if ( HasArtists() )
|
if ( HasArtists() )
|
||||||
s << _T('\n') << ("Graphics art by ") << AllAsString(GetArtists());
|
s << _T('\n') << _("Graphics art by ") << AllAsString(GetArtists());
|
||||||
|
|
||||||
if ( HasTranslators() )
|
if ( HasTranslators() )
|
||||||
s << _T('\n') << ("Translations by ") << AllAsString(GetTranslators());
|
s << _T('\n') << _("Translations by ") << AllAsString(GetTranslators());
|
||||||
|
|
||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user