From 64f9370691007410d45d1a5af624edfb0291224c Mon Sep 17 00:00:00 2001 From: s_nakamoto Date: Fri, 2 Jul 2010 23:43:29 +0000 Subject: reduced max outbound connections from 15 to 8 --version 0.3 rc4 --- ui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ui.cpp') diff --git a/ui.cpp b/ui.cpp index 42da9ca38a..973cb0c6d2 100644 --- a/ui.cpp +++ b/ui.cpp @@ -1598,7 +1598,7 @@ void COptionsDialog::OnButtonApply(wxCommandEvent& event) CAboutDialog::CAboutDialog(wxWindow* parent) : CAboutDialogBase(parent) { - m_staticTextVersion->SetLabel(strprintf(_("version 0.%d.%d beta"), VERSION/100, VERSION%100)); + m_staticTextVersion->SetLabel(strprintf(_("version %d.%d.%d"), VERSION/10000, (VERSION/100)%100, VERSION%100)); // Change (c) into UTF-8 or ANSI copyright symbol wxString str = m_staticTextMain->GetLabel(); -- cgit v1.2.3