From 4552e87ec7f93e450e16afa9065f6e4b43b5fb01 Mon Sep 17 00:00:00 2001 From: Rodrigo Braz Monteiro Date: Thu, 4 Jan 2007 17:34:00 +0000 Subject: [PATCH] Originally committed to SVN as r713. --- aegisub/dialog_about.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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);