diff options
Diffstat (limited to 'browse-item.h')
| -rw-r--r-- | browse-item.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/browse-item.h b/browse-item.h index 9da3452..a89d1f7 100644 --- a/browse-item.h +++ b/browse-item.h @@ -21,21 +21,21 @@ private: const cTrackInfo *track; cBrowseItem *main_item; int column; - eItemType type; + eItemType type; int items; public: cBrowseItem(cBrowseItem *_main_item, const cTrackInfo *_track, int _column, eItemType _type); - + void increase_items(void); void delete_items(int del_items); void toggle_node(void); - + const cTrackInfo *get_track(void) const { return track; } - const cBrowseItem *get_main_item(void) const { return main_item; } + const cBrowseItem *get_main_item(void) const { return main_item; } int get_column(void) const { return column; } int get_items(void) const { return items; } - + bool is_node(void) const { return (type != itemTrack); } bool is_open(void) const { return (type == itemNodeOpen); } bool is_closed(void) const { return (type == itemNodeClose); } |
