From: <zou...@us...> - 2008-01-29 10:21:03
|
Revision: 980 http://dcplusplus.svn.sourceforge.net/dcplusplus/?rev=980&view=rev Author: zouzou123gen Date: 2008-01-29 02:20:57 -0800 (Tue, 29 Jan 2008) Log Message: ----------- don't disable TextLimit in chats (was always -1 in WinXP) Modified Paths: -------------- dcplusplus/trunk/changelog.txt dcplusplus/trunk/win32/HubFrame.cpp dcplusplus/trunk/win32/PrivateFrame.cpp Modified: dcplusplus/trunk/changelog.txt =================================================================== --- dcplusplus/trunk/changelog.txt 2008-01-29 01:47:38 UTC (rev 979) +++ dcplusplus/trunk/changelog.txt 2008-01-29 10:20:57 UTC (rev 980) @@ -16,6 +16,7 @@ * Upgraded to bzip 1.0.4 (thanks pothead) * Tab tooltips (thanks poy) * Allow spaces in the description field (poy) +* Fixed max characters limit in chats (poy) -- 0.704 2007-12-14 -- * Hub lists added to utilize Coral's distributed network (ullner) Modified: dcplusplus/trunk/win32/HubFrame.cpp =================================================================== --- dcplusplus/trunk/win32/HubFrame.cpp 2008-01-29 01:47:38 UTC (rev 979) +++ dcplusplus/trunk/win32/HubFrame.cpp 2008-01-29 10:20:57 UTC (rev 980) @@ -105,7 +105,6 @@ WidgetTextBox::Seed cs = WinUtil::Seeds::textBox; cs.style = WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_VSCROLL | ES_MULTILINE | ES_NOHIDESEL | ES_READONLY; chat = createTextBox(cs); - chat->setTextLimit(0); addWidget(chat); paned->setFirst(chat); chat->onContextMenu(std::tr1::bind(&HubFrame::handleChatContextMenu, this, _1)); Modified: dcplusplus/trunk/win32/PrivateFrame.cpp =================================================================== --- dcplusplus/trunk/win32/PrivateFrame.cpp 2008-01-29 01:47:38 UTC (rev 979) +++ dcplusplus/trunk/win32/PrivateFrame.cpp 2008-01-29 10:20:57 UTC (rev 980) @@ -110,7 +110,6 @@ WidgetTextBox::Seed cs = WinUtil::Seeds::textBox; cs.style = WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_VSCROLL | ES_MULTILINE | ES_NOHIDESEL | ES_READONLY; chat = createTextBox(cs); - chat->setTextLimit(0); addWidget(chat); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |