From: <arn...@us...> - 2008-02-13 22:36:25
|
Revision: 1008 http://dcplusplus.svn.sourceforge.net/dcplusplus/?rev=1008&view=rev Author: arnetheduck Date: 2008-02-13 14:36:24 -0800 (Wed, 13 Feb 2008) Log Message: ----------- Warning fixes Modified Paths: -------------- dcplusplus/trunk/changelog.txt dcplusplus/trunk/win32/ADLSearchFrame.cpp dcplusplus/trunk/win32/HubFrame.cpp dcplusplus/trunk/win32/NotepadFrame.cpp dcplusplus/trunk/win32/PublicHubsFrame.cpp dcplusplus/trunk/win32/WaitingUsersFrame.cpp Modified: dcplusplus/trunk/changelog.txt =================================================================== --- dcplusplus/trunk/changelog.txt 2008-02-13 22:06:33 UTC (rev 1007) +++ dcplusplus/trunk/changelog.txt 2008-02-13 22:36:24 UTC (rev 1008) @@ -31,6 +31,8 @@ * Fixed kick message filtering (thanks mikejj) * version.xml now use Coral (ullner) * [ADC] Number of files counts unique files when sending stats to hub +* [ADC] Fixed kick handling +* Fixed 100% on remove all sources in queue -- 0.704 2007-12-14 -- * Hub lists added to utilize Coral's distributed network (ullner) Modified: dcplusplus/trunk/win32/ADLSearchFrame.cpp =================================================================== --- dcplusplus/trunk/win32/ADLSearchFrame.cpp 2008-02-13 22:06:33 UTC (rev 1007) +++ dcplusplus/trunk/win32/ADLSearchFrame.cpp 2008-02-13 22:36:24 UTC (rev 1008) @@ -110,8 +110,6 @@ } void ADLSearchFrame::layout() { - const int border = 2; - SmartWin::Rectangle r(SmartWin::Point(0, 0), getClientAreaSize()); layoutStatus(r); Modified: dcplusplus/trunk/win32/HubFrame.cpp =================================================================== --- dcplusplus/trunk/win32/HubFrame.cpp 2008-02-13 22:06:33 UTC (rev 1007) +++ dcplusplus/trunk/win32/HubFrame.cpp 2008-02-13 22:36:24 UTC (rev 1008) @@ -1097,6 +1097,7 @@ case GREATER: insert = (size < ui.getIdentity().getBytesShared()); break; case LESS: insert = (size > ui.getIdentity().getBytesShared()); break; case NOT_EQUAL: insert = (size != ui.getIdentity().getBytesShared()); break; + case NONE: ; break; } } else { if(sel >= COLUMN_LAST) { Modified: dcplusplus/trunk/win32/NotepadFrame.cpp =================================================================== --- dcplusplus/trunk/win32/NotepadFrame.cpp 2008-02-13 22:06:33 UTC (rev 1007) +++ dcplusplus/trunk/win32/NotepadFrame.cpp 2008-02-13 22:36:24 UTC (rev 1008) @@ -66,8 +66,6 @@ } void NotepadFrame::layout() { - const int border = 2; - SmartWin::Rectangle r(SmartWin::Point(0, 0), getClientAreaSize()); layoutStatus(r); Modified: dcplusplus/trunk/win32/PublicHubsFrame.cpp =================================================================== --- dcplusplus/trunk/win32/PublicHubsFrame.cpp 2008-02-13 22:06:33 UTC (rev 1007) +++ dcplusplus/trunk/win32/PublicHubsFrame.cpp 2008-02-13 22:36:24 UTC (rev 1008) @@ -419,6 +419,7 @@ case GREATER: insert = (size < entrySize); break; case LESS: insert = (size > entrySize); break; case NOT_EQUAL: insert = (size != entrySize); break; + case NONE: ; break; } } else { if(sel >= COLUMN_LAST) { Modified: dcplusplus/trunk/win32/WaitingUsersFrame.cpp =================================================================== --- dcplusplus/trunk/win32/WaitingUsersFrame.cpp 2008-02-13 22:06:33 UTC (rev 1007) +++ dcplusplus/trunk/win32/WaitingUsersFrame.cpp 2008-02-13 22:36:24 UTC (rev 1008) @@ -53,10 +53,7 @@ } // Recalculate frame control layout -void WaitingUsersFrame::layout() -{ - const int border = 2; - +void WaitingUsersFrame::layout() { SmartWin::Rectangle r(this->getClientAreaSize()); layoutStatus(r); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |