Skip to content
Snippets Groups Projects
Commit 074b473a authored by Stefen Guzik's avatar Stefen Guzik
Browse files

64 bit hack

parent 6534e0b1
No related branches found
No related tags found
No related merge requests found
......@@ -2679,7 +2679,7 @@ Flu_Tree_Browser::Node* Flu_Tree_Browser :: add_leaf( const char* path, const ch
unsigned int Flu_Tree_Browser :: remove( const char *fullpath )
{
return( (unsigned int)root.modify( fullpath, Node::REMOVE, rdata ) );
return( (unsigned long)root.modify( fullpath, Node::REMOVE, rdata ) );
}
unsigned int Flu_Tree_Browser :: remove( const char *path, const char *text )
......
......@@ -1019,7 +1019,7 @@ class Flu_Tree_Browser : public Fl_Group
//! Remove the entry identified by path \b fullpath from this node
/*! \return the unique id of the removed entry, or \c 0 if no matching entry was found */
inline unsigned int remove( const char *fullpath )
{ return( (unsigned int)modify( fullpath, REMOVE, tree->rdata ) ); }
{ return( (unsigned long)modify( fullpath, REMOVE, tree->rdata ) ); }
//! Remove the entry identified by unique id \b id from this node
/*! \return the unique id of the removed entry, or \c 0 if no matching entry was found */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment