Skip to content

Commit

Permalink
Issue #379: Extra v in version
Browse files Browse the repository at this point in the history
  • Loading branch information
rmpowell77 committed Aug 1, 2021
1 parent 221ee65 commit d14d789
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/CalChartFrame.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions src/CalChartSplash.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -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"
Expand Down

0 comments on commit d14d789

Please sign in to comment.