aboutsummaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
Diffstat (limited to 'Source')
-rw-r--r--Source/SPUserManager.m31
1 files changed, 6 insertions, 25 deletions
diff --git a/Source/SPUserManager.m b/Source/SPUserManager.m
index 8b26b001..dbac9ea2 100644
--- a/Source/SPUserManager.m
+++ b/Source/SPUserManager.m
@@ -294,6 +294,7 @@
#pragma mark -
#pragma mark OutlineView Delegate Methods
+
- (void)outlineView:(NSOutlineView *)olv willDisplayCell:(NSCell*)cell forTableColumn:(NSTableColumn *)tableColumn item:(id)item
{
if ([cell isKindOfClass:[ImageAndTextCell class]])
@@ -330,12 +331,7 @@
- (BOOL)outlineView:(NSOutlineView *)olv shouldEditTableColumn:(NSTableColumn *)tableColumn item:(id)item
{
- if ([[[item representedObject] children] count] == 0)
- {
- return TRUE;
- }
- return FALSE;
-
+ return ([[[item representedObject] children] count] == 0);
}
- (void)outlineViewSelectionDidChange:(NSNotification *)notification
@@ -652,25 +648,10 @@
return FALSE;
id selectedObject = [[treeController selectedObjects] objectAtIndex:0];
- if ([[tabViewItem identifier] isEqualToString:@"General"])
- {
- if ([selectedObject parent] == nil) {
- return TRUE;
- } else {
- return FALSE;
- }
- }
- else if ([[tabViewItem identifier] isEqualToString:@"Global Privileges"] ||
- [[tabViewItem identifier] isEqualToString:@"Resources"])
- {
- if ([selectedObject parent] != nil)
- {
- return TRUE;
- }
- else
- {
- return FALSE;
- }
+ if ([[tabViewItem identifier] isEqualToString:@"General"]) {
+ return ([selectedObject parent] == nil);
+ } else if ([[tabViewItem identifier] isEqualToString:@"Global Privileges"] || [[tabViewItem identifier] isEqualToString:@"Resources"]) {
+ return ([selectedObject parent] != nil);
}
return TRUE;