From 21f6c0af1e4f2afd9090af7ac612576fb6a92df7 Mon Sep 17 00:00:00 2001 From: PB Date: Sun, 21 Apr 2019 17:25:58 +0200 Subject: [PATCH] Update year in string returned by wxGetLibraryVersionInfo() Change years in the copyright information returned by wxGetLibraryVersionInfo() from "1995-2018" to "1995-2019". Closes https://github.com/wxWidgets/wxWidgets/pull/1302 --- src/common/utilscmn.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/utilscmn.cpp b/src/common/utilscmn.cpp index 456dc1b38a..b1f9ffed46 100644 --- a/src/common/utilscmn.cpp +++ b/src/common/utilscmn.cpp @@ -1442,7 +1442,7 @@ wxVersionInfo wxGetLibraryVersionInfo() wxMINOR_VERSION, wxRELEASE_NUMBER, msg, - wxS("Copyright (c) 1995-2018 wxWidgets team")); + wxS("Copyright (c) 1995-2019 wxWidgets team")); } void wxInfoMessageBox(wxWindow* parent)