Don't use "Copyright" word in wxAboutDialog under MSW

MSW platform convention is to show just "© whatever" instead of
"Copyright © whatever" in the "About" dialogs, so make it simpler to
conform to it but still keeping using the word under the other
platforms, where it usually is included, by removing the "Copyright"
word under MSW only in wx code.
This commit is contained in:
Vadim Zeitlin 2023-02-23 19:37:33 +00:00
parent a0a49f5391
commit 020aff8a7f
3 changed files with 13 additions and 1 deletions

View file

@ -3407,7 +3407,7 @@ static void InitAboutInfoMinimal(wxAboutDialogInfo& info)
wxVERSION_NUM_DOT_STRING
));
info.SetDescription("This sample shows different wxWidgets dialogs.");
info.SetCopyright("(C) 1998-2023 wxWidgets dev team.");
info.SetCopyright("Copyright (C) 1998-2023 wxWidgets dev team.");
}
static void InitAboutInfoWebsite(wxAboutDialogInfo& info)