reduced max outbound connections from 15 to 8 --version 0.3 rc4

This commit is contained in:
s_nakamoto
2010-07-02 23:43:29 +00:00
parent e2bf701454
commit 64f9370691
6 changed files with 6 additions and 5 deletions

2
ui.cpp
View File

@@ -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();