| Summary: | "/ctcp $nick version" outputs a requesting ctcp version message wheras right-clicking on a nick and selecting version does not | ||
|---|---|---|---|
| Product: | [Applications] konversation | Reporter: | Niek Beernink <n.beernink> |
| Component: | general | Assignee: | Konversation Bugs <konversation-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Niek Beernink
2006-08-29 08:33:40 UTC
SVN commit 578457 by hein:
Make CTCP input box command and context menu action behave consistently.
BUG:133169
M +2 -3 channel.cpp
M +1 -1 commit.h
--- trunk/extragear/network/konversation/src/channel.cpp #578456:578457
@@ -482,8 +482,7 @@
raw=true;
break;
case Konversation::Version:
- pattern="PRIVMSG %u :\x01VERSION\x01";
- raw=true;
+ pattern=cc+"CTCP %u VERSION";
break;
case Konversation::Whois:
pattern="WHOIS %u %u";
@@ -501,7 +500,7 @@
case Konversation::Ping:
{
unsigned int time_t = QDateTime::currentDateTime().toTime_t();
- pattern=QString(Preferences::commandChar()+"CTCP %u PING %1").arg(time_t);
+ pattern=QString(cc+"CTCP %u PING %1").arg(time_t);
}
break;
case Konversation::Kick:
--- trunk/extragear/network/konversation/src/commit.h #578456:578457
@@ -1,4 +1,4 @@
// This COMMIT number is added to version string to be used as "patch level"
#ifndef COMMIT
-#define COMMIT 3148
+#define COMMIT 3149
#endif
|