summaryrefslogtreecommitdiff
authorwazlaf <wazlaf>2002-09-29 21:45:16 (UTC)
committer wazlaf <wazlaf>2002-09-29 21:45:16 (UTC)
commita54430dbebd980109afdf604c7bfc9b0e15c4fdb (patch) (unidiff)
treeb81722f654163301c67e98b4d210b1bcf068c20b
parent75c85d30c3f7de8d2785f70e0f28ef838ea7f419 (diff)
downloadopie-a54430dbebd980109afdf604c7bfc9b0e15c4fdb.zip
opie-a54430dbebd980109afdf604c7bfc9b0e15c4fdb.tar.gz
opie-a54430dbebd980109afdf604c7bfc9b0e15c4fdb.tar.bz2
modeless channel support
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/opieirc/ircconnection.cpp2
-rw-r--r--noncore/net/opieirc/ircmessageparser.cpp2
-rw-r--r--noncore/net/opieirc/ircservereditor.cpp4
-rw-r--r--noncore/net/opieirc/ircservertab.cpp2
4 files changed, 5 insertions, 5 deletions
diff --git a/noncore/net/opieirc/ircconnection.cpp b/noncore/net/opieirc/ircconnection.cpp
index 5eb0cf2..2325cca 100644
--- a/noncore/net/opieirc/ircconnection.cpp
+++ b/noncore/net/opieirc/ircconnection.cpp
@@ -66,3 +66,3 @@ void IRCConnection::dataReady() {
66 QString channelName = (*it).stripWhiteSpace(); 66 QString channelName = (*it).stripWhiteSpace();
67 if (channelName.startsWith("#")) { 67 if (channelName.startsWith("#") || channelName.startsWith("+")) {
68 sendLine("JOIN "+ channelName); 68 sendLine("JOIN "+ channelName);
diff --git a/noncore/net/opieirc/ircmessageparser.cpp b/noncore/net/opieirc/ircmessageparser.cpp
index 2b77414..a95c64e 100644
--- a/noncore/net/opieirc/ircmessageparser.cpp
+++ b/noncore/net/opieirc/ircmessageparser.cpp
@@ -185,3 +185,3 @@ void IRCMessageParser::parseLiteralPrivMsg(IRCMessage *message) {
185 emit outputReady(output); 185 emit outputReady(output);
186 } else if (message->param(0).at(0) == '#') { 186 } else if (message->param(0).at(0) == '#' || message->param(0).at(0) == '+') {
187 /* IRC Channel message detected, verify sender, channel and display it */ 187 /* IRC Channel message detected, verify sender, channel and display it */
diff --git a/noncore/net/opieirc/ircservereditor.cpp b/noncore/net/opieirc/ircservereditor.cpp
index 5e916ae..f976c84 100644
--- a/noncore/net/opieirc/ircservereditor.cpp
+++ b/noncore/net/opieirc/ircservereditor.cpp
@@ -56,4 +56,4 @@ void IRCServerEditor::accept() {
56 QString channelName = (*it).stripWhiteSpace(); 56 QString channelName = (*it).stripWhiteSpace();
57 if (!channelName.startsWith("#")) { 57 if (!channelName.startsWith("#") && !channelName.startsWith("+")) {
58 QMessageBox::critical(this, tr("Error"), tr("The channel list needs to contain a\ncomma separated list of channel\n names which start with '#'")); 58 QMessageBox::critical(this, tr("Error"), tr("The channel list needs to contain a\ncomma separated list of channel\n names which start with either '#' or '+'"));
59 return; 59 return;
diff --git a/noncore/net/opieirc/ircservertab.cpp b/noncore/net/opieirc/ircservertab.cpp
index aea58a3..d16c05f 100644
--- a/noncore/net/opieirc/ircservertab.cpp
+++ b/noncore/net/opieirc/ircservertab.cpp
@@ -70,3 +70,3 @@ void IRCServerTab::executeCommand(IRCTab *tab, QString line) {
70 stream >> channel; 70 stream >> channel;
71 if (channel.length() > 0 && channel.startsWith("#")) { 71 if (channel.length() > 0 && (channel.startsWith("#") || channel.startsWith("+"))) {
72 m_session->join(channel); 72 m_session->join(channel);