aboutsummaryrefslogtreecommitdiff
path: root/ui.cpp
diff options
context:
space:
mode:
author--author=Satoshi Nakamoto <satoshin@gmx.com>2010-07-30 17:35:17 +0000
committerGavin Andresen <gavinandresen@gmail.com>2010-07-30 17:35:17 +0000
commitec82517c8919f9cb7194511dc322a2575745e39e (patch)
tree102c6ae76c23e2e222848e3ba8ae14e524358d39 /ui.cpp
parent31ffe954b6f415b724c3214de5bffd7bba5872c0 (diff)
downloadbitcoin-ec82517c8919f9cb7194511dc322a2575745e39e.tar.xz
Fredrik Roubert: simplified makefile.unix with wx-config, misc
Diffstat (limited to 'ui.cpp')
-rw-r--r--ui.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/ui.cpp b/ui.cpp
index 3b63a936e3..a5a6dd7c61 100644
--- a/ui.cpp
+++ b/ui.cpp
@@ -1763,8 +1763,7 @@ void COptionsDialog::OnButtonApply(wxCommandEvent& event)
CAboutDialog::CAboutDialog(wxWindow* parent) : CAboutDialogBase(parent)
{
- m_staticTextVersion->SetLabel(strprintf(_("version %d.%d.%d beta"), VERSION/10000, (VERSION/100)%100, VERSION%100));
- //m_staticTextVersion->SetLabel(strprintf(_("version %d.%d.%d%s beta"), VERSION/10000, (VERSION/100)%100, VERSION%100, pszSubVer));
+ m_staticTextVersion->SetLabel(strprintf(_("version %d.%d.%d%s beta"), VERSION/10000, (VERSION/100)%100, VERSION%100, pszSubVer));
// Change (c) into UTF-8 or ANSI copyright symbol
wxString str = m_staticTextMain->GetLabel();