Compiling FLU 2.14 with Visual Studio 2005:
I get a number of errors relating to invalid const conversions:
'error C2440: '=' : cannot convert from 'const char *' to 'char *'
one example:
int Flu_File_Chooser :: popupContextMenu( Entry *entry )
{
int type = entry ? entry->type : ENTRY_NONE;
const char *filename = entry ? entry->filename.c_str() : NULL;
char *ext = NULL;
if( filename )
ext = strrchr( filename, '.' );
Is this merely a warning on other compilers?
_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk