Originally committed to SVN as r713.

This commit is contained in:
Rodrigo Braz Monteiro 2007-01-04 17:34:00 +00:00
parent d63848b36e
commit 4552e87ec7
1 changed files with 5 additions and 1 deletions

View File

@ -75,7 +75,7 @@ AboutScreen::AboutScreen(wxWindow *parent)
libString += _T("libass - Copyright (c) 2006, Evgeniy Stepanov;\n");
#endif
#if USE_ASA == 1
libString += _T("asa - Copyright (c) 2006, David Lamparter;\n");
libString += _T("asa - Copyright (c) 2004-2007, David Lamparter;\n");
#endif
libString += _T("MyThes - Copyright (c) 2003 Kevin B. Hendricks, Stratford, Ontario, Canada\n");
@ -99,6 +99,10 @@ AboutScreen::AboutScreen(wxWindow *parent)
aboutString += _("\nSee the help file for full credits.\n");
aboutString += wxString::Format(_("Built by %s on %s."), GetAegisubBuildCredit().c_str(), GetAegisubBuildTime().c_str());
// Replace copyright symbol
wxChar copySymbol = 0xA9;
aboutString.Replace(_T("(c)"),wxString(copySymbol));
// Text sizer
wxSizer *TextSizer = new wxBoxSizer(wxVERTICAL);
TextSizer->Add(new wxStaticText(this,-1,aboutString),1);