diff --git a/aegisub/dialog_about.cpp b/aegisub/dialog_about.cpp index da9a1c599..52fd34e7b 100644 --- a/aegisub/dialog_about.cpp +++ b/aegisub/dialog_about.cpp @@ -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);