Skip to content

Commit 14048f3

Browse files
authored
Issue #379: Extra v in version (#385)
1 parent 3ce32cf commit 14048f3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/CalChartFrame.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ CalChartFrame::CalChartFrame(wxDocument* doc, wxView* view, CalChartConfiguratio
226226

227227
// Give it a status line
228228
CreateStatusBar(3);
229-
SetStatusText("Welcome to Calchart v" CC_VERSION);
229+
SetStatusText("Welcome to Calchart " CC_VERSION);
230230

231231
// Make a menubar
232232
auto file_menu = new wxMenu;

src/CalChartSplash.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ CalChartSplash::CalChartSplash(wxDocManager* manager, wxFrame* frame, wxString c
8585
SetSizer(VStack([this](auto sizer) {
8686
// add a horizontal bar to make things clear:
8787
AddToSizerExpand(sizer, BitmapWithBandIcon(this, GetLogoSize()));
88-
AddToSizerBasic(sizer, TextStringWithSize(this, "CalChart v" CC_VERSION, GetTitleFontSize()));
88+
AddToSizerBasic(sizer, TextStringWithSize(this, "CalChart " CC_VERSION, GetTitleFontSize()));
8989
AddToSizerBasic(sizer, LineWithLength(this, GetLogoLineSize()));
9090

9191
HStack(sizer, BasicSizerFlags(), [this](auto sizer) {
@@ -109,7 +109,7 @@ void CalChartSplash::About()
109109
{
110110
// clang-format off
111111
(void)wxMessageBox(
112-
"CalChart v" CC_VERSION "\n"
112+
"CalChart " CC_VERSION "\n"
113113
"Authors: Gurk Meeker, Richard Michael Powell\n"
114114
"\n"
115115
"Contributors: Brandon Chinn, Kevin Durand, Noah Gilmore, David Strachan-Olson, Allan Yu\n"

0 commit comments

Comments
 (0)