diff options
| author | Jeff Garzik <[email protected]> | 2011-04-15 03:58:28 -0400 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2011-04-15 03:58:28 -0400 |
| commit | a5843203574aba93a94df09eed9c922ec0f41d78 (patch) | |
| tree | f8fb337c49ab85be2fa48eade2f788be34e85a2d /ui.cpp | |
| parent | New checkpoint at block 118,000 (diff) | |
| download | discoin-a5843203574aba93a94df09eed9c922ec0f41d78.tar.xz discoin-a5843203574aba93a94df09eed9c922ec0f41d78.zip | |
Ensure version number->string conversion is consistent
Diffstat (limited to 'ui.cpp')
| -rw-r--r-- | ui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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(); |