summaryrefslogtreecommitdiff
path: root/FL/Fl_Tree_Item.H
diff options
context:
space:
mode:
Diffstat (limited to 'FL/Fl_Tree_Item.H')
-rw-r--r--FL/Fl_Tree_Item.H4
1 files changed, 2 insertions, 2 deletions
diff --git a/FL/Fl_Tree_Item.H b/FL/Fl_Tree_Item.H
index 8cdd6ee10..620fb7dc5 100644
--- a/FL/Fl_Tree_Item.H
+++ b/FL/Fl_Tree_Item.H
@@ -349,7 +349,7 @@ public:
}
/// See if the item is selected.
char is_selected() const {
- return(is_flag(SELECTED));
+ return (char)is_flag(SELECTED);
}
/// Change the item's activation state to the optionally specified 'val'.
///
@@ -378,7 +378,7 @@ public:
}
/// See if the item is activated.
char is_activated() const {
- return(is_flag(ACTIVE));
+ return (char)is_flag(ACTIVE);
}
/// See if the item is activated. Alias for is_activated().
char is_active() const {