Summary: | User Limit in Channel Options Dialog broken | ||
---|---|---|---|
Product: | [Applications] konversation | Reporter: | Sebastian Wiedenroth <wiedi> |
Component: | general | Assignee: | Konversation Developers <konversation-devel> |
Status: | CLOSED WORKSFORME | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Compiled Sources | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Sebastian Wiedenroth
2006-03-26 00:41:18 UTC
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"; thanks, works perfect now ;-) |