[Konversation-devel] [Bug 124265] User Limit in Channel Options Dialog broken
Shintaro Matsuoka
shin at shoegazed.org
Thu May 18 09:10:09 CEST 2006
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=124265
------- Additional Comments From shin shoegazed org 2006-05-18 09:10 -------
SVN commit 542070 by shin:
Fix the problem that "User Limit" in Channel Option Dialog doesn't work correctly.
Thank you for the report. Please confirm this fix.
CCBUG: 124265
M +1 -1 channeloptionsdialog.cpp
--- trunk/extragear/network/konversation/src/channeloptionsdialog.cpp #542069:542070
@ -321,7 +321,7 @
mode += "n";
modes.append(mode);
mode = (m_widget->userLimitChBox->isChecked() ? "+" : "-");
- mode += "l" + m_widget->userLimitEdit->value();
+ mode += "l" + QString::number( m_widget->userLimitEdit->value() );
modes.append(mode);
mode = (m_widget->inviteModeChBox->isChecked() ? "+" : "-");
mode += "i";
More information about the Konversation-devel
mailing list