From 14048f34f0860dfb5b9db9e1d9a8c8fb41fe51fc Mon Sep 17 00:00:00 2001 From: Richard Powell Date: Tue, 3 Aug 2021 20:40:52 -0700 Subject: [PATCH] Issue #379: Extra v in version (#385) --- src/CalChartFrame.cpp | 2 +- src/CalChartSplash.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/CalChartFrame.cpp b/src/CalChartFrame.cpp index 605dff5c..2c49dee0 100644 --- a/src/CalChartFrame.cpp +++ b/src/CalChartFrame.cpp @@ -226,7 +226,7 @@ CalChartFrame::CalChartFrame(wxDocument* doc, wxView* view, CalChartConfiguratio // Give it a status line CreateStatusBar(3); - SetStatusText("Welcome to Calchart v" CC_VERSION); + SetStatusText("Welcome to Calchart " CC_VERSION); // Make a menubar auto file_menu = new wxMenu; diff --git a/src/CalChartSplash.cpp b/src/CalChartSplash.cpp index b44c05c8..4945b021 100644 --- a/src/CalChartSplash.cpp +++ b/src/CalChartSplash.cpp @@ -85,7 +85,7 @@ CalChartSplash::CalChartSplash(wxDocManager* manager, wxFrame* frame, wxString c SetSizer(VStack([this](auto sizer) { // add a horizontal bar to make things clear: AddToSizerExpand(sizer, BitmapWithBandIcon(this, GetLogoSize())); - AddToSizerBasic(sizer, TextStringWithSize(this, "CalChart v" CC_VERSION, GetTitleFontSize())); + AddToSizerBasic(sizer, TextStringWithSize(this, "CalChart " CC_VERSION, GetTitleFontSize())); AddToSizerBasic(sizer, LineWithLength(this, GetLogoLineSize())); HStack(sizer, BasicSizerFlags(), [this](auto sizer) { @@ -109,7 +109,7 @@ void CalChartSplash::About() { // clang-format off (void)wxMessageBox( - "CalChart v" CC_VERSION "\n" + "CalChart " CC_VERSION "\n" "Authors: Gurk Meeker, Richard Michael Powell\n" "\n" "Contributors: Brandon Chinn, Kevin Durand, Noah Gilmore, David Strachan-Olson, Allan Yu\n"