|
From: <ks...@us...> - 2002-10-19 15:24:00
|
Update of /cvsroot/aquachat/AquaChat
In directory usw-pr-cvs1:/tmp/cvs-serv30848
Modified Files:
ACServerController.h ACServerController.m
Log Message:
Er, nothing big changed. Move along.
Index: ACServerController.h
===================================================================
RCS file: /cvsroot/aquachat/AquaChat/ACServerController.h,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- ACServerController.h 12 Oct 2002 13:36:10 -0000 1.12
+++ ACServerController.h 19 Oct 2002 15:23:53 -0000 1.13
@@ -46,6 +46,8 @@
- (void)disconnect:(NSString*)quitMsg;
- (void)addTab:(ACTab *)newTab forKey:(NSString *)key;
+- (ACTab *)tabForKey:(NSString *)key;
+
- (void)partChannel:(ChannelTab *)channelToPart;
- (NSDictionary *)tabDict;
Index: ACServerController.m
===================================================================
RCS file: /cvsroot/aquachat/AquaChat/ACServerController.m,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- ACServerController.m 12 Oct 2002 13:36:10 -0000 1.29
+++ ACServerController.m 19 Oct 2002 15:23:53 -0000 1.30
@@ -147,6 +147,11 @@
[theTabs setObject:newTab forKey:key];
}
+- (ACTab *)tabForKey:(NSString *)key
+{
+ return [theTabs objectForKey:key];
+}
+
- (void)partChannel:(ChannelTab *)channelToPart
{
[self sendData:[NSString stringWithFormat:@"PART %@", [channelToPart channelName]]];
@@ -189,7 +194,7 @@
[self handleError:complaint];
}
-- (NSDictionary*)tabDict
+- (NSDictionary *)tabDict
{
return theTabs;
}
|