Skip to content

Commit

Permalink
i18n fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Blake-Madden committed Sep 2, 2024
1 parent 23cf931 commit 1bec480
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions src/gui/projectdlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -388,11 +388,11 @@ void NewProjectDialog::CreateControls()
0, wxALIGN_CENTER_VERTICAL);

wxArrayString cppVersions;
cppVersions.Add(_(L"11"));
cppVersions.Add(_(L"14"));
cppVersions.Add(_(L"17"));
cppVersions.Add(_(L"20"));
cppVersions.Add(_(L"23"));
cppVersions.Add(L"11");
cppVersions.Add(L"14");
cppVersions.Add(L"17");
cppVersions.Add(L"20");
cppVersions.Add(L"23");
wxChoice* cppVersionRadioBox =
new wxChoice(cppPage, wxID_ANY, wxDefaultPosition, wxDefaultSize, cppVersions, 0,
wxGenericValidator(&m_minCppVersion));
Expand All @@ -401,7 +401,7 @@ void NewProjectDialog::CreateControls()
mainSizer->Add(cppVersionSizer, wxSizerFlags().Expand().Border());

cppPage->SetSizer(mainSizer);
treeBook->AddPage(cppPage, _(L"C++"), false);
treeBook->AddPage(cppPage, L"C++", false);
}

// translation catalogs
Expand Down
2 changes: 1 addition & 1 deletion src/gui/projectdlg.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class NewProjectDialog final : public wxDialog
m_filePath = path;
TransferDataToWindow();
}

[[nodiscard]]
const wxString& GetExcludedPath() const noexcept
{
Expand Down

0 comments on commit 1bec480

Please sign in to comment.