diff options
author | Michael Krelin <hacker@klever.net> | 2007-07-08 20:52:40 +0000 |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2007-07-08 20:52:40 +0000 |
commit | 36d37c9550cdf0148c28c9e7c5e80d0a6331789e (patch) | |
tree | fc1612872faa9ad17fd9b2f50ee9eacd06667c42 /packages | |
parent | 136eb8e8ee4c5423bdb8e10159ea28995d4483ad (diff) |
opie-irc: more fixes for utf-8
Diffstat (limited to 'packages')
-rw-r--r-- | packages/opie-irc/files/utf8-topic.patch | 18 | ||||
-rw-r--r-- | packages/opie-irc/opie-irc_cvs.bb | 5 |
2 files changed, 21 insertions, 2 deletions
diff --git a/packages/opie-irc/files/utf8-topic.patch b/packages/opie-irc/files/utf8-topic.patch new file mode 100644 index 0000000000..d8d9a52ca9 --- /dev/null +++ b/packages/opie-irc/files/utf8-topic.patch @@ -0,0 +1,18 @@ +diff --git a/ircmessageparser.cpp b/ircmessageparser.cpp +index c449a65..ae47f69 100644 +--- a/ircmessageparser.cpp ++++ b/ircmessageparser.cpp +@@ -667,11 +667,11 @@ void IRCMessageParser::parseNumericalNoSuchNick(IRCMessage *) { + void IRCMessageParser::parseNumericalTopic(IRCMessage *message) { + IRCChannel *channel = m_session->getChannel(message->param(1).lower()); + if (channel) { +- IRCOutput output(OUTPUT_TOPIC, tr("Topic for channel " + channel->channelname() + " is \"" + message->param(2) + "\"")); ++ IRCOutput output(OUTPUT_TOPIC, tr("Topic for channel ") + channel->channelname() + tr(" is \"") + message->param(2) + "\""); + output.addParam(channel); + emit outputReady(output); + } else { +- IRCOutput output(OUTPUT_TOPIC, tr("Topic for channel " + message->param(1) + " is \"" + message->param(2) + "\"")); ++ IRCOutput output(OUTPUT_TOPIC, tr("Topic for channel ") + message->param(1) + tr(" is \"") + message->param(2) + "\""); + output.addParam(0); + emit outputReady(output); + } diff --git a/packages/opie-irc/opie-irc_cvs.bb b/packages/opie-irc/opie-irc_cvs.bb index f7704f5493..63e70179a4 100644 --- a/packages/opie-irc/opie-irc_cvs.bb +++ b/packages/opie-irc/opie-irc_cvs.bb @@ -1,10 +1,11 @@ require ${PN}.inc PV = "${OPIE_CVS_PV}" -PR = "r1" +PR = "r2" SRC_URI = "${HANDHELDS_CVS};module=opie/noncore/net/opieirc \ ${HANDHELDS_CVS};module=opie/help \ ${HANDHELDS_CVS};module=opie/apps \ ${HANDHELDS_CVS};module=opie/pics \ - file://utf8.patch;patch=1 " + file://utf8.patch;patch=1 \ + file://utf8-topic.patch;patch=1 " |