- (IBAction) closeServerList: (id)sender
{
+ [serverTable setDelegate: nil];
[NSApp endSheet: serverListPanel];
[serverListPanel orderOut: nil];
}
modalDelegate: nil
didEndSelector: nil
contextInfo: nil];
+
+ [serverTable setDelegate: self];
}
// See if we have everything we need to export...
}
}
+
+#pragma mark NSTableView Notifications
+- (void)NSTableViewSelectionDidChangeNotification: (NSNotification *)notification
+{
+ NSLog(@"%@", notification);
+}
+
#pragma mark TURAnselGalleryPanel Notifications
- (void)TURAnselGalleryPanelDidAddGallery
{
#pragma mark NSTableView Datasource
- (int)numberOfRowsInTableView:(NSTableView *)aTableView
{
- NSLog(@"Table count");
- NSLog(@"%@", anselServers);
return [anselServers count];
}