From: <zou...@us...> - 2008-01-30 12:35:34
|
Revision: 981 http://dcplusplus.svn.sourceforge.net/dcplusplus/?rev=981&view=rev Author: zouzou123gen Date: 2008-01-30 04:35:30 -0800 (Wed, 30 Jan 2008) Log Message: ----------- reverted the previous TextLimit fix 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 10:20:57 UTC (rev 980) +++ dcplusplus/trunk/changelog.txt 2008-01-30 12:35:30 UTC (rev 981) @@ -16,7 +16,6 @@ * 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 10:20:57 UTC (rev 980) +++ dcplusplus/trunk/win32/HubFrame.cpp 2008-01-30 12:35:30 UTC (rev 981) @@ -105,6 +105,7 @@ 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 10:20:57 UTC (rev 980) +++ dcplusplus/trunk/win32/PrivateFrame.cpp 2008-01-30 12:35:30 UTC (rev 981) @@ -110,6 +110,7 @@ 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. |