@@ -38,14 +38,14 @@ /*! * @brief A class which provides easy to use double-linked lists. */ @interface OFList: OFObject { - of_list_object_t *firstListObject; - of_list_object_t *lastListObject; - size_t count; - unsigned long mutations; + of_list_object_t *_firstListObject; + of_list_object_t *_lastListObject; + size_t _count; + unsigned long _mutations; } #ifdef OF_HAVE_PROPERTIES @property (readonly) of_list_object_t *firstListObject; @property (readonly) of_list_object_t *lastListObject; @@ -160,14 +160,14 @@ - (void)removeAllObjects; @end @interface OFListEnumerator: OFEnumerator { - OFList *list; - of_list_object_t *current; - unsigned long mutations; - unsigned long *mutationsPtr; + OFList *_list; + of_list_object_t *_current; + unsigned long _mutations; + unsigned long *_mutationsPtr; } - initWithList: (OFList*)list mutationsPointer: (unsigned long*)mutationsPtr; @end