By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 2840
Collapse All | Expand All

(-)trinity-konversation-14.0.4/konversation/src/server.cpp (-2 / +2 lines)
Lines 2326-2334 Link Here
2326
{
2326
{
2327
    TQString lcNickname = nickname.lower();
2327
    TQString lcNickname = nickname.lower();
2328
    NickInfoPtr nickInfo = getNickInfo(lcNickname);
2328
    NickInfoPtr nickInfo = getNickInfo(lcNickname);
2329
    bool wasOnline = nickInfo->getPrintedOnline();
2329
    bool wasOnline;
2330
2330
2331
    if (nickInfo && wasOnline)
2331
    if (nickInfo && ((wasOnline = nickInfo->getPrintedOnline())))
2332
    {
2332
    {
2333
        // Delete from query list, if present.
2333
        // Delete from query list, if present.
2334
        if (m_queryNicks.contains(lcNickname)) m_queryNicks.remove(lcNickname);
2334
        if (m_queryNicks.contains(lcNickname)) m_queryNicks.remove(lcNickname);

Return to bug 2840