summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-irc/konversation/files/konversation-1.5_rc1-setting-admin-mode.patch')
-rw-r--r--net-irc/konversation/files/konversation-1.5_rc1-setting-admin-mode.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/net-irc/konversation/files/konversation-1.5_rc1-setting-admin-mode.patch b/net-irc/konversation/files/konversation-1.5_rc1-setting-admin-mode.patch
deleted file mode 100644
index 6daa49782bf8..000000000000
--- a/net-irc/konversation/files/konversation-1.5_rc1-setting-admin-mode.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-commit 5b79cf8cad9781f37f52f77a71353ea4caf64698
-Author: Cathy J. Fitzpatrick <cathy@cathyjf.com>
-Date: Mon Feb 18 16:46:53 2013 -0700
-
- Fix for setting mode +a or -a
-
- Previously, setting or removing mode +a on a nick in a channel called
- ChannelNick::setOwner(), so setting +a on a nick made the nick appear
- as an owner of the channel, rather than as an admin. This commit
- fixes the problem by correctly calling ChannelNick::setAdmin() instead.
-
- CCBUG:153580
-
-diff --git a/src/irc/channel.cpp b/src/irc/channel.cpp
-index 3ceddb0..6911473 100644
---- a/src/irc/channel.cpp
-+++ b/src/irc/channel.cpp
-@@ -1495,7 +1495,7 @@ void Channel::updateMode(const QString& sourceNick, char mode, bool plus, const
- }
- if (parameterChannelNick)
- {
-- parameterChannelNick->setOwner(plus);
-+ parameterChannelNick->setAdmin(plus);
- emitUpdateInfo();
- }
- break;