-rw-r--r-- | noncore/net/opieirc/ircmessageparser.cpp | 35 |
1 files changed, 25 insertions, 10 deletions
diff --git a/noncore/net/opieirc/ircmessageparser.cpp b/noncore/net/opieirc/ircmessageparser.cpp index 32e1011..c449a65 100644 --- a/noncore/net/opieirc/ircmessageparser.cpp +++ b/noncore/net/opieirc/ircmessageparser.cpp | |||
@@ -404,265 +404,280 @@ void IRCMessageParser::parseCTCPPing(IRCMessage *message) { | |||
404 | if (!person) { | 404 | if (!person) { |
405 | /* Person not yet known, create and add to the current session */ | 405 | /* Person not yet known, create and add to the current session */ |
406 | person = new IRCPerson(message->prefix()); | 406 | person = new IRCPerson(message->prefix()); |
407 | m_session->addPerson(person); | 407 | m_session->addPerson(person); |
408 | } | 408 | } |
409 | IRCOutput output(OUTPUT_QUERYACTION, tr("Received a CTCP PING from ")+ mask.nick() ); | 409 | IRCOutput output(OUTPUT_QUERYACTION, tr("Received a CTCP PING from ")+ mask.nick() ); |
410 | output.addParam(person); | 410 | output.addParam(person); |
411 | emit outputReady(output); | 411 | emit outputReady(output); |
412 | } else { | 412 | } else { |
413 | emit outputReady(IRCOutput(OUTPUT_ERROR, tr("CTCP PING with bad recipient"))); | 413 | emit outputReady(IRCOutput(OUTPUT_ERROR, tr("CTCP PING with bad recipient"))); |
414 | } | 414 | } |
415 | } | 415 | } |
416 | 416 | ||
417 | } | 417 | } |
418 | 418 | ||
419 | void IRCMessageParser::parseCTCPVersion(IRCMessage *message) { | 419 | void IRCMessageParser::parseCTCPVersion(IRCMessage *message) { |
420 | IRCPerson mask(message->prefix()); | 420 | IRCPerson mask(message->prefix()); |
421 | IRCOutput output(OUTPUT_CTCP); | 421 | IRCOutput output(OUTPUT_CTCP); |
422 | if(message->isCTCPRequest()) { | 422 | if(message->isCTCPRequest()) { |
423 | m_session->m_connection->sendCTCPReply(mask.nick(), "VERSION", APP_VERSION " " APP_COPYSTR); | 423 | m_session->m_connection->sendCTCPReply(mask.nick(), "VERSION", APP_VERSION " " APP_COPYSTR); |
424 | output.setMessage(tr("Received a CTCP VERSION request from ") + mask.nick()); | 424 | output.setMessage(tr("Received a CTCP VERSION request from ") + mask.nick()); |
425 | } | 425 | } |
426 | 426 | ||
427 | else { | 427 | else { |
428 | output.setMessage("Received CTCP VERSION reply from " + mask.nick() + ":" + message->param(0)); | 428 | output.setMessage("Received CTCP VERSION reply from " + mask.nick() + ":" + message->param(0)); |
429 | } | 429 | } |
430 | emit outputReady(output); | 430 | emit outputReady(output); |
431 | } | 431 | } |
432 | 432 | ||
433 | void IRCMessageParser::parseCTCPAction(IRCMessage *message) { | 433 | void IRCMessageParser::parseCTCPAction(IRCMessage *message) { |
434 | IRCPerson mask(message->prefix()); | 434 | IRCPerson mask(message->prefix()); |
435 | QString dest = message->ctcpDestination(); | 435 | QString dest = message->ctcpDestination(); |
436 | if (dest.startsWith("#")) { | 436 | if (dest.startsWith("#")) { |
437 | IRCChannel *channel = m_session->getChannel(dest.lower()); | 437 | IRCChannel *channel = m_session->getChannel(dest.lower()); |
438 | if (channel) { | 438 | if (channel) { |
439 | IRCChannelPerson *person = channel->getPerson(mask.nick()); | 439 | IRCChannelPerson *person = channel->getPerson(mask.nick()); |
440 | if (person) { | 440 | if (person) { |
441 | IRCOutput output(OUTPUT_CHANACTION, "*" + mask.nick() + message->param(0)); | 441 | IRCOutput output(OUTPUT_CHANACTION, "*" + mask.nick() + message->param(0)); |
442 | output.addParam(channel); | 442 | output.addParam(channel); |
443 | output.addParam(person); | 443 | output.addParam(person); |
444 | emit outputReady(output); | 444 | emit outputReady(output); |
445 | } else { | 445 | } else { |
446 | emit outputReady(IRCOutput(OUTPUT_ERROR, tr("CTCP ACTION with unknown person - Desynchronized?"))); | 446 | emit outputReady(IRCOutput(OUTPUT_ERROR, tr("CTCP ACTION with unknown person - Desynchronized?"))); |
447 | } | 447 | } |
448 | } else { | 448 | } else { |
449 | emit outputReady(IRCOutput(OUTPUT_ERROR, tr("CTCP ACTION with unknown channel - Desynchronized?"))); | 449 | emit outputReady(IRCOutput(OUTPUT_ERROR, tr("CTCP ACTION with unknown channel - Desynchronized?"))); |
450 | } | 450 | } |
451 | } else { | 451 | } else { |
452 | if (message->ctcpDestination() == m_session->m_server->nick()) { | 452 | if (message->ctcpDestination() == m_session->m_server->nick()) { |
453 | IRCPerson *person = m_session->getPerson(mask.nick()); | 453 | IRCPerson *person = m_session->getPerson(mask.nick()); |
454 | if (!person) { | 454 | if (!person) { |
455 | /* Person not yet known, create and add to the current session */ | 455 | /* Person not yet known, create and add to the current session */ |
456 | person = new IRCPerson(message->prefix()); | 456 | person = new IRCPerson(message->prefix()); |
457 | m_session->addPerson(person); | 457 | m_session->addPerson(person); |
458 | } | 458 | } |
459 | IRCOutput output(OUTPUT_QUERYACTION, "*" + mask.nick() + message->param(0)); | 459 | IRCOutput output(OUTPUT_QUERYACTION, "*" + mask.nick() + message->param(0)); |
460 | output.addParam(person); | 460 | output.addParam(person); |
461 | emit outputReady(output); | 461 | emit outputReady(output); |
462 | } else { | 462 | } else { |
463 | emit outputReady(IRCOutput(OUTPUT_ERROR, tr("CTCP ACTION with bad recipient"))); | 463 | emit outputReady(IRCOutput(OUTPUT_ERROR, tr("CTCP ACTION with bad recipient"))); |
464 | } | 464 | } |
465 | } | 465 | } |
466 | } | 466 | } |
467 | 467 | ||
468 | void IRCMessageParser::parseCTCPDCC(IRCMessage *message) { | 468 | void IRCMessageParser::parseCTCPDCC(IRCMessage *message) { |
469 | QStringList params = QStringList::split(' ', message->param(0).stripWhiteSpace()); | 469 | QStringList params = QStringList::split(' ', message->param(0).stripWhiteSpace()); |
470 | 470 | ||
471 | if(params[0] == "SEND") { | 471 | if(params[0] == "SEND") { |
472 | QString nickname = IRCPerson(message->prefix()).nick(); | 472 | QString nickname = IRCPerson(message->prefix()).nick(); |
473 | if( params.count() != 5) { | 473 | if( params.count() != 5) { |
474 | emit outputReady(IRCOutput(OUTPUT_ERROR, tr("Malformed DCC request from %1").arg(nickname))); | 474 | emit outputReady(IRCOutput(OUTPUT_ERROR, tr("Malformed DCC request from %1").arg(nickname))); |
475 | return; | 475 | return; |
476 | } | 476 | } |
477 | bool accepted = DCCTransferTab::confirm(static_cast<QWidget*>(m_session->parent()), nickname, params[1], params[4].toUInt()); | 477 | bool accepted = DCCTransferTab::confirm(static_cast<QWidget*>(m_session->parent()), nickname, params[1], params[4].toUInt()); |
478 | if(!accepted) | 478 | if(!accepted) |
479 | return; | 479 | return; |
480 | QString filename = Opie::Ui::OFileDialog::getSaveFileName(Opie::Ui::OFileSelector::EXTENDED_ALL, | 480 | QString filename = Opie::Ui::OFileDialog::getSaveFileName(Opie::Ui::OFileSelector::EXTENDED_ALL, |
481 | QString::null, params[1], MimeTypes(), 0, tr("Save As")); | 481 | QString::null, params[1], MimeTypes(), 0, tr("Save As")); |
482 | if(filename.isEmpty()) | 482 | if(filename.isEmpty()) |
483 | return; | 483 | return; |
484 | 484 | ||
485 | odebug << "Receiving file " << filename << " from " << nickname << oendl; | 485 | odebug << "Receiving file " << filename << " from " << nickname << oendl; |
486 | static_cast<IRCServerTab*>(m_session->parent())->mainwindow()->addDCC(DCCTransfer::Recv, params[2].toUInt(), params[3].toUInt(), | 486 | static_cast<IRCServerTab*>(m_session->parent())->mainwindow()->addDCC(DCCTransfer::Recv, params[2].toUInt(), params[3].toUInt(), |
487 | filename, nickname, params[4].toUInt()); | 487 | filename, nickname, params[4].toUInt()); |
488 | } | 488 | } |
489 | } | 489 | } |
490 | 490 | ||
491 | void IRCMessageParser::parseLiteralMode(IRCMessage *message) { | 491 | void IRCMessageParser::parseLiteralMode(IRCMessage *message) { |
492 | IRCPerson mask(message->prefix()); | 492 | IRCPerson mask(message->prefix()); |
493 | 493 | ||
494 | if (IRCChannel::isValid(message->param(0))) { | 494 | if (IRCChannel::isValid(message->param(0))) { |
495 | IRCChannel *channel = m_session->getChannel(message->param(0).lower()); | 495 | IRCChannel *channel = m_session->getChannel(message->param(0).lower()); |
496 | if (channel) { | 496 | if (channel) { |
497 | QString temp, parameters = message->allParameters().right(message->allParameters().length() - channel->channelname().length() - 1); | 497 | QString temp, parameters = message->allParameters().right(message->allParameters().length() - channel->channelname().length() - 1); |
498 | QTextIStream stream(¶meters); | 498 | QTextIStream stream(¶meters); |
499 | bool set = FALSE; | 499 | bool set = FALSE; |
500 | while (!stream.atEnd()) { | 500 | while (!stream.atEnd()) { |
501 | stream >> temp; | 501 | stream >> temp; |
502 | if (temp.startsWith("+")) { | 502 | if (temp.startsWith("+")) { |
503 | set = TRUE; | 503 | set = TRUE; |
504 | temp = temp.right(1); | 504 | temp = temp.right(1); |
505 | } | 505 | } |
506 | else | 506 | else |
507 | if (temp.startsWith("-")) { | 507 | if (temp.startsWith("-")) { |
508 | set = FALSE; | 508 | set = FALSE; |
509 | temp = temp.right(1); | 509 | temp = temp.right(1); |
510 | } | 510 | } |
511 | else { | 511 | else { |
512 | emit outputReady(IRCOutput(OUTPUT_ERROR, tr("Mode change has unknown type"))); | 512 | emit outputReady(IRCOutput(OUTPUT_ERROR, tr("Mode change has unknown type"))); |
513 | return; | 513 | return; |
514 | } | 514 | } |
515 | if (temp == "o") { | 515 | if (temp == "o") { |
516 | stream >> temp; | 516 | stream >> temp; |
517 | IRCChannelPerson *person = channel->getPerson(temp); | 517 | IRCChannelPerson *person = channel->getPerson(temp); |
518 | if (person) { | 518 | if (person) { |
519 | IRCOutput output(OUTPUT_CHANPERSONMODE, person->setOp(mask.nick(), set)); | 519 | IRCOutput output(OUTPUT_CHANPERSONMODE, person->setOp(mask.nick(), set)); |
520 | output.addParam(channel); | 520 | output.addParam(channel); |
521 | output.addParam(person); | 521 | output.addParam(person); |
522 | emit outputReady(output); | 522 | emit outputReady(output); |
523 | } | 523 | } |
524 | else { | 524 | else { |
525 | emit outputReady(IRCOutput(OUTPUT_ERROR, tr("Mode change with unknown person - Desynchronized?"))); | 525 | emit outputReady(IRCOutput(OUTPUT_ERROR, tr("Mode change with unknown person - Desynchronized?"))); |
526 | } | 526 | } |
527 | } | 527 | } |
528 | else | 528 | else |
529 | if (temp == "v") { | 529 | if (temp == "v") { |
530 | stream >> temp; | 530 | stream >> temp; |
531 | IRCChannelPerson *person = channel->getPerson(temp); | 531 | IRCChannelPerson *person = channel->getPerson(temp); |
532 | if (person) { | 532 | if (person) { |
533 | IRCOutput output(OUTPUT_CHANPERSONMODE, person->setVoice(mask.nick(), set)); | 533 | IRCOutput output(OUTPUT_CHANPERSONMODE, person->setVoice(mask.nick(), set)); |
534 | output.addParam(channel); | 534 | output.addParam(channel); |
535 | output.addParam(person); | 535 | output.addParam(person); |
536 | emit outputReady(output); | 536 | emit outputReady(output); |
537 | } | 537 | } |
538 | else { | 538 | else { |
539 | emit outputReady(IRCOutput(OUTPUT_ERROR, tr("Mode change with unknown person - Desynchronized?"))); | 539 | emit outputReady(IRCOutput(OUTPUT_ERROR, tr("Mode change with unknown person - Desynchronized?"))); |
540 | } | 540 | } |
541 | } | 541 | } |
542 | else { | 542 | else { |
543 | emit outputReady(IRCOutput(OUTPUT_ERROR, tr("Mode change with unknown flag"))); | 543 | emit outputReady(IRCOutput(OUTPUT_ERROR, tr("Mode change with unknown flag"))); |
544 | } | 544 | } |
545 | } | 545 | } |
546 | } else { | 546 | } else { |
547 | emit outputReady(IRCOutput(OUTPUT_ERROR, tr("Mode change with unknown kannel - Desynchronized?"))); | 547 | emit outputReady(IRCOutput(OUTPUT_ERROR, tr("Mode change with unknown kannel - Desynchronized?"))); |
548 | } | 548 | } |
549 | } else { | 549 | } else { |
550 | emit outputReady(IRCOutput(OUTPUT_ERROR, tr("User modes not supported yet"))); | 550 | emit outputReady(IRCOutput(OUTPUT_ERROR, tr("User modes not supported yet"))); |
551 | } | 551 | } |
552 | } | 552 | } |
553 | 553 | ||
554 | void IRCMessageParser::parseLiteralKick(IRCMessage *message) { | 554 | void IRCMessageParser::parseLiteralKick(IRCMessage *message) { |
555 | IRCPerson mask(message->prefix()); | 555 | IRCPerson mask(message->prefix()); |
556 | IRCChannel *channel = m_session->getChannel(message->param(0).lower()); | 556 | IRCChannel *channel = m_session->getChannel(message->param(0).lower()); |
557 | if (channel) { | 557 | if (channel) { |
558 | IRCChannelPerson *person = channel->getPerson(message->param(1)); | 558 | IRCChannelPerson *person = channel->getPerson(message->param(1)); |
559 | if (person) { | 559 | if (person) { |
560 | if (person->nick() == m_session->m_server->nick()) { | 560 | if (person->nick() == m_session->m_server->nick()) { |
561 | m_session->removeChannel(channel); | 561 | m_session->removeChannel(channel); |
562 | IRCOutput output(OUTPUT_SELFKICK, tr("You were kicked from ") + channel->channelname() + tr(" by ") + mask.nick() + " (" + message->param(2) + ")"); | 562 | IRCOutput output(OUTPUT_SELFKICK, tr("You were kicked from ") + channel->channelname() + tr(" by ") + mask.nick() + " (" + message->param(2) + ")"); |
563 | output.addParam(channel); | 563 | output.addParam(channel); |
564 | emit outputReady(output); | 564 | emit outputReady(output); |
565 | } else { | 565 | } else { |
566 | /* someone else got kicked */ | 566 | /* someone else got kicked */ |
567 | channel->removePerson(person); | 567 | channel->removePerson(person); |
568 | IRCOutput output(OUTPUT_OTHERKICK, person->nick() + tr(" was kicked from ") + channel->channelname() + tr(" by ") + mask.nick()+ " (" + message->param(2) + ")"); | 568 | IRCOutput output(OUTPUT_OTHERKICK, person->nick() + tr(" was kicked from ") + channel->channelname() + tr(" by ") + mask.nick()+ " (" + message->param(2) + ")"); |
569 | output.addParam(channel); | 569 | output.addParam(channel); |
570 | output.addParam(person); | 570 | output.addParam(person); |
571 | emit outputReady(output); | 571 | emit outputReady(output); |
572 | } | 572 | } |
573 | } else { | 573 | } else { |
574 | emit outputReady(IRCOutput(OUTPUT_ERROR, tr("Unknown person kick - desynchronized?"))); | 574 | emit outputReady(IRCOutput(OUTPUT_ERROR, tr("Unknown person kick - desynchronized?"))); |
575 | } | 575 | } |
576 | } else { | 576 | } else { |
577 | emit outputReady(IRCOutput(OUTPUT_ERROR, tr("Unknown channel kick - desynchronized?"))); | 577 | emit outputReady(IRCOutput(OUTPUT_ERROR, tr("Unknown channel kick - desynchronized?"))); |
578 | } | 578 | } |
579 | } | 579 | } |
580 | 580 | ||
581 | void IRCMessageParser::parseNumericalNames(IRCMessage *message) { | 581 | void IRCMessageParser::parseNumericalNames(IRCMessage *message) { |
582 | /* Name list sent when joining a channel */ | 582 | /* Name list sent when joining a channel */ |
583 | IRCChannel *channel = m_session->getChannel(message->param(2).lower()); | 583 | IRCChannel *channel = m_session->getChannel(message->param(2).lower()); |
584 | if (channel != 0) { | 584 | if (channel != 0) { |
585 | QString people = message->param(3); | 585 | QString people = message->param(3); |
586 | QTextIStream stream(&people); | 586 | QTextIStream stream(&people); |
587 | QString temp; | 587 | QString temp; |
588 | 588 | ||
589 | while (!stream.atEnd()) { | 589 | while (!stream.atEnd()) { |
590 | stream >> temp; | 590 | stream >> temp; |
591 | 591 | ||
592 | char flagch = temp.at(0).latin1(); | 592 | char flagch = temp.at(0).latin1(); |
593 | int flag = 0; | 593 | int flag = 0; |
594 | QString nick; | 594 | QString nick; |
595 | /* Parse person flags */ | 595 | /* Parse person flags */ |
596 | if (flagch == '@' || flagch == '+' || flagch=='%' || flagch == '*') { | 596 | if (flagch == '~' || flagch == '&' || flagch == '@' || flagch == '+' || |
597 | flagch=='%' || flagch == '*') { | ||
597 | 598 | ||
598 | nick = temp.right(temp.length()-1); | 599 | nick = temp.right(temp.length()-1); |
599 | switch (flagch) { | 600 | switch (flagch) { |
600 | case '@': flag = IRCChannelPerson::PERSON_FLAG_OP; break; | 601 | /** |
601 | case '+': flag = IRCChannelPerson::PERSON_FLAG_VOICE; break; | 602 | * @note '~' and `&' are extensions of the unrealircd irc |
602 | case '%': flag = IRCChannelPerson::PERSON_FLAG_HALFOP; break; | 603 | * daemon. This app can't see users w/out checking for these |
603 | default : flag = 0; break; | 604 | * chars. |
605 | */ | ||
606 | case '~': | ||
607 | case '&': | ||
608 | case '@': | ||
609 | flag = IRCChannelPerson::PERSON_FLAG_OP; | ||
610 | break; | ||
611 | case '+': | ||
612 | flag = IRCChannelPerson::PERSON_FLAG_VOICE; | ||
613 | break; | ||
614 | case '%': | ||
615 | flag = IRCChannelPerson::PERSON_FLAG_HALFOP; | ||
616 | break; | ||
617 | default : | ||
618 | flag = 0; | ||
619 | break; | ||
604 | } | 620 | } |
605 | } else { | 621 | } else |
606 | nick = temp; | 622 | nick = temp; |
607 | } | ||
608 | 623 | ||
609 | IRCPerson *person = m_session->getPerson(nick); | 624 | IRCPerson *person = m_session->getPerson(nick); |
610 | if (person == 0) { | 625 | if (person == 0) { |
611 | person = new IRCPerson(); | 626 | person = new IRCPerson(); |
612 | person->setNick(nick); | 627 | person->setNick(nick); |
613 | m_session->addPerson(person); | 628 | m_session->addPerson(person); |
614 | } | 629 | } |
615 | IRCChannelPerson *chan_person = new IRCChannelPerson(person); | 630 | IRCChannelPerson *chan_person = new IRCChannelPerson(person); |
616 | chan_person->setFlags(flag); | 631 | chan_person->setFlags(flag); |
617 | channel->addPerson(chan_person); | 632 | channel->addPerson(chan_person); |
618 | } | 633 | } |
619 | } else { | 634 | } else |
620 | emit outputReady(IRCOutput(OUTPUT_ERROR, tr("Server message with unknown channel"))); | 635 | emit outputReady(IRCOutput(OUTPUT_ERROR, |
621 | } | 636 | tr("Server message with unknown channel"))); |
622 | } | 637 | } |
623 | 638 | ||
624 | void IRCMessageParser::parseNumericalEndOfNames(IRCMessage *message) { | 639 | void IRCMessageParser::parseNumericalEndOfNames(IRCMessage *message) { |
625 | /* Done syncing to channel */ | 640 | /* Done syncing to channel */ |
626 | IRCChannel *channel = m_session->getChannel(message->param(1).lower()); | 641 | IRCChannel *channel = m_session->getChannel(message->param(1).lower()); |
627 | if (channel) { | 642 | if (channel) { |
628 | channel->setHasPeople(TRUE); | 643 | channel->setHasPeople(TRUE); |
629 | /* Yes, we want the names before anything happens inside the GUI */ | 644 | /* Yes, we want the names before anything happens inside the GUI */ |
630 | IRCOutput output(OUTPUT_SELFJOIN, tr("You joined channel ") + channel->channelname()); | 645 | IRCOutput output(OUTPUT_SELFJOIN, tr("You joined channel ") + channel->channelname()); |
631 | output.addParam(channel); | 646 | output.addParam(channel); |
632 | emit outputReady(output); | 647 | emit outputReady(output); |
633 | } else { | 648 | } else { |
634 | emit outputReady(IRCOutput(OUTPUT_ERROR, tr("Server message with unknown channel"))); | 649 | emit outputReady(IRCOutput(OUTPUT_ERROR, tr("Server message with unknown channel"))); |
635 | } | 650 | } |
636 | } | 651 | } |
637 | 652 | ||
638 | 653 | ||
639 | void IRCMessageParser::parseNumericalNicknameInUse(IRCMessage *) { | 654 | void IRCMessageParser::parseNumericalNicknameInUse(IRCMessage *) { |
640 | /* If we are connnected this error is not critical */ | 655 | /* If we are connnected this error is not critical */ |
641 | if(m_session->isLoggedIn()) | 656 | if(m_session->isLoggedIn()) |
642 | return; | 657 | return; |
643 | 658 | ||
644 | emit outputReady(IRCOutput(OUTPUT_ERROR, tr("Nickname is in use, please reconnect with a different nickname"))); | 659 | emit outputReady(IRCOutput(OUTPUT_ERROR, tr("Nickname is in use, please reconnect with a different nickname"))); |
645 | m_session->endSession(); | 660 | m_session->endSession(); |
646 | } | 661 | } |
647 | 662 | ||
648 | void IRCMessageParser::parseNumericalNoSuchNick(IRCMessage *) { | 663 | void IRCMessageParser::parseNumericalNoSuchNick(IRCMessage *) { |
649 | emit outputReady(IRCOutput(OUTPUT_ERROR, tr("No such nickname"))); | 664 | emit outputReady(IRCOutput(OUTPUT_ERROR, tr("No such nickname"))); |
650 | } | 665 | } |
651 | 666 | ||
652 | void IRCMessageParser::parseNumericalTopic(IRCMessage *message) { | 667 | void IRCMessageParser::parseNumericalTopic(IRCMessage *message) { |
653 | IRCChannel *channel = m_session->getChannel(message->param(1).lower()); | 668 | IRCChannel *channel = m_session->getChannel(message->param(1).lower()); |
654 | if (channel) { | 669 | if (channel) { |
655 | IRCOutput output(OUTPUT_TOPIC, tr("Topic for channel " + channel->channelname() + " is \"" + message->param(2) + "\"")); | 670 | IRCOutput output(OUTPUT_TOPIC, tr("Topic for channel " + channel->channelname() + " is \"" + message->param(2) + "\"")); |
656 | output.addParam(channel); | 671 | output.addParam(channel); |
657 | emit outputReady(output); | 672 | emit outputReady(output); |
658 | } else { | 673 | } else { |
659 | IRCOutput output(OUTPUT_TOPIC, tr("Topic for channel " + message->param(1) + " is \"" + message->param(2) + "\"")); | 674 | IRCOutput output(OUTPUT_TOPIC, tr("Topic for channel " + message->param(1) + " is \"" + message->param(2) + "\"")); |
660 | output.addParam(0); | 675 | output.addParam(0); |
661 | emit outputReady(output); | 676 | emit outputReady(output); |
662 | } | 677 | } |
663 | } | 678 | } |
664 | 679 | ||
665 | void IRCMessageParser::parseNumericalTopicWhoTime(IRCMessage *) { | 680 | void IRCMessageParser::parseNumericalTopicWhoTime(IRCMessage *) { |
666 | } | 681 | } |
667 | 682 | ||
668 | 683 | ||