Don't require an IRCUser where it is not necessary.

FossilOrigin-Name: b86913fa3e01b6e467cd05ed81fa54a3ae159e54d6fc45481c29264a3238f20e
This commit is contained in:
Jonathan Schleifer 2012-02-16 17:27:50 +00:00
parent a73f2c9daa
commit 600c3df5f0
2 changed files with 9 additions and 9 deletions

View file

@ -101,12 +101,12 @@
- (void)sendMessage: (OFString*)msg
toChannel: (IRCChannel*)channel;
- (void)sendMessage: (OFString*)msg
toUser: (IRCUser*)user;
toUser: (OFString*)user;
- (void)sendNotice: (OFString*)notice
toUser: (IRCUser*)user;
toUser: (OFString*)user;
- (void)sendNotice: (OFString*)notice
toChannel: (IRCChannel*)channel;
- (void)kickUser: (IRCUser*)user
- (void)kickUser: (OFString*)user
fromChannel: (IRCChannel*)channel
withReason: (OFString*)reason;
- (void)changeNicknameTo: (OFString*)nickname;