Skip to content

Commit

Permalink
Fix commented code.
Browse files Browse the repository at this point in the history
Reviewed by me.
  • Loading branch information
Francisco Ryan Tolmasky I committed Mar 10, 2009
1 parent 8913ef8 commit 5cc1ef9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions AppKit/CPThemedAttribute.j
Expand Up @@ -58,7 +58,7 @@ var BIT_COUNT = [ 0 /*00000*/, 1 /*00001*/, 1 /*00010*/, 2 /*00011*/, 1 /*0010
_themedClass = aClass;

_values = [CPDictionary dictionary];
_attributeFromTheme = nil;//[_theme valueForAttributeName:_name inClass:_themedClass];
_attributeFromTheme = [_theme valueForAttributeName:_name inClass:_themedClass];
}

return self;
Expand Down Expand Up @@ -87,7 +87,7 @@ var BIT_COUNT = [ 0 /*00000*/, 1 /*00001*/, 1 /*00010*/, 2 /*00011*/, 1 /*0010

_cache = {};
_theme = aTheme;
_attributeFromTheme = nil;//[_theme valueForAttributeName:_name inClass:_themedClass];
_attributeFromTheme = [_theme valueForAttributeName:_name inClass:_themedClass];
}

- (void)setThemedClass:(Class)aClass
Expand All @@ -97,7 +97,7 @@ var BIT_COUNT = [ 0 /*00000*/, 1 /*00001*/, 1 /*00010*/, 2 /*00011*/, 1 /*0010

_cache = {};
_themedClass = aClass;
_attributeFromTheme = nil;//[_theme valueForAttributeName:_name inClass:_themedClass];
_attributeFromTheme = [_theme valueForAttributeName:_name inClass:_themedClass];
}

- (void)setValue:(id)aValue
Expand Down

0 comments on commit 5cc1ef9

Please sign in to comment.