From 65f3269d0ba1c77bf3cec2292533b7721d531724 Mon Sep 17 00:00:00 2001 From: Grayson Riffe Date: Sun, 15 Oct 2023 23:22:58 -0500 Subject: [PATCH] Update about dialog --- WinChat/src/Application.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/WinChat/src/Application.cpp b/WinChat/src/Application.cpp index 8014433..5ce1a57 100644 --- a/WinChat/src/Application.cpp +++ b/WinChat/src/Application.cpp @@ -230,9 +230,11 @@ namespace wc { return TRUE; } - case ID_HELP_ABOUT: - MessageBox(dlg, std::format(L"{} {}\nGrayson Riffe 2023", app->m_appName, app->m_appVersion).c_str(), L"About", MB_OK); + case ID_HELP_ABOUT: { + std::wstring aboutStr = L"{} {}\nCopyright Grayson Riffe 2023\ngraysonriffe.com"; + MessageBox(dlg, std::vformat(aboutStr, std::make_wformat_args(app->m_appName, app->m_appVersion)).c_str(), L"About", MB_OK); return TRUE; + } case IDC_BUTTONEXIT: case ID_FILE_EXIT: