Ensure version number->string conversion is consistent

This commit is contained in:
Jeff Garzik
2011-04-15 03:58:28 -04:00
committed by Jeff Garzik
parent b37f09aa2e
commit a584320357
4 changed files with 33 additions and 11 deletions

2
ui.cpp
View File

@@ -1814,7 +1814,7 @@ void COptionsDialog::OnButtonApply(wxCommandEvent& event)
CAboutDialog::CAboutDialog(wxWindow* parent) : CAboutDialogBase(parent)
{
m_staticTextVersion->SetLabel(strprintf(_("version %s%s BETA"), FormatVersion(VERSION).c_str(), pszSubVer));
m_staticTextVersion->SetLabel(strprintf(_("version %s"), FormatFullVersion().c_str()));
// Change (c) into UTF-8 or ANSI copyright symbol
wxString str = m_staticTextMain->GetLabel();