From: <arn...@us...> - 2006-10-14 15:52:40
|
Revision: 678 http://svn.sourceforge.net/dcplusplus/?rev=678&view=rev Author: arnetheduck Date: 2006-10-14 08:52:30 -0700 (Sat, 14 Oct 2006) Log Message: ----------- Network page fix Modified Paths: -------------- dcplusplus/trunk/changelog.txt dcplusplus/trunk/windows/NetworkPage.cpp dcplusplus/trunk/windows/UploadPage.cpp Modified: dcplusplus/trunk/changelog.txt =================================================================== --- dcplusplus/trunk/changelog.txt 2006-10-14 14:57:33 UTC (rev 677) +++ dcplusplus/trunk/changelog.txt 2006-10-14 15:52:30 UTC (rev 678) @@ -4,6 +4,7 @@ * Antifrag is now default * Confirm hub removal is now default * SFV checking is now default +* Fixed TLS port not being greyed out -- 0.698 2006-10-10 -- * [bug 1065] Code cleanup (thanks steven sheehy) Modified: dcplusplus/trunk/windows/NetworkPage.cpp =================================================================== --- dcplusplus/trunk/windows/NetworkPage.cpp 2006-10-14 14:57:33 UTC (rev 677) +++ dcplusplus/trunk/windows/NetworkPage.cpp 2006-10-14 15:52:30 UTC (rev 678) @@ -161,6 +161,7 @@ ::EnableWindow(GetDlgItem(IDC_PORT_TCP), direct || upnp || nat); ::EnableWindow(GetDlgItem(IDC_PORT_UDP), direct || upnp || nat); + ::EnableWindow(GetDlgItem(IDC_PORT_TLS), direct || upnp || nat); BOOL socks = IsDlgButtonChecked(IDC_SOCKS5); ::EnableWindow(GetDlgItem(IDC_SOCKS_SERVER), socks); Modified: dcplusplus/trunk/windows/UploadPage.cpp =================================================================== --- dcplusplus/trunk/windows/UploadPage.cpp 2006-10-14 14:57:33 UTC (rev 677) +++ dcplusplus/trunk/windows/UploadPage.cpp 2006-10-14 15:52:30 UTC (rev 678) @@ -206,7 +206,7 @@ LineDlg virt; virt.title = TSTRING(VIRTUAL_NAME); virt.description = TSTRING(VIRTUAL_NAME_LONG); - virt.line = tstring(buf); + virt.line = vName; if(virt.DoModal(m_hWnd) == IDOK) { if (Util::stricmp(buf, virt.line) != 0) { ShareManager::getInstance()->renameDirectory(Text::fromT(rPath), Text::fromT(virt.line)); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |