mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-11 07:10:37 +00:00
Prefixed ivars with underscores; added explicatory comment
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@5701 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
fb77d815b2
commit
6a3efdf390
1 changed files with 14 additions and 6 deletions
|
@ -7,6 +7,8 @@
|
||||||
|
|
||||||
Author: Scott Christley <scottc@net-community.com>
|
Author: Scott Christley <scottc@net-community.com>
|
||||||
Date: 1996
|
Date: 1996
|
||||||
|
Author: Nicola Pero <n.pero@mi.flashnet.it>
|
||||||
|
Date: 2000
|
||||||
|
|
||||||
This file is part of the GNUstep GUI Library.
|
This file is part of the GNUstep GUI Library.
|
||||||
|
|
||||||
|
@ -42,12 +44,18 @@
|
||||||
@interface NSColorList : NSObject <NSCoding>
|
@interface NSColorList : NSObject <NSCoding>
|
||||||
|
|
||||||
{
|
{
|
||||||
// Attributes
|
NSString* _name;
|
||||||
NSString *list_name;
|
NSString* _fullFileName;
|
||||||
NSString *file_name;
|
BOOL _is_editable;
|
||||||
NSMutableDictionary *color_list;
|
|
||||||
NSMutableArray *color_list_keys;
|
// Color Lists are required to be a sort of ordered dictionary
|
||||||
BOOL is_editable;
|
// For now it is implemented as follows (Scott Christley, 1996):
|
||||||
|
|
||||||
|
// This object contains couples (keys (=color names), values (=colors))
|
||||||
|
NSMutableDictionary* _colorDictionary;
|
||||||
|
|
||||||
|
// This object contains the keys (=color names) in order
|
||||||
|
NSMutableArray* _orderedColorKeys;
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in a new issue