From: Daniel Fox <[EMAIL PROTECTED]>

> 'error C2440: '=' : cannot convert from 'const char *' to 'char *'
>  const char *filename = entry ? entry->filename.c_str() : NULL;
>  char *ext = NULL;
>  if( filename )
>    ext = strrchr( filename, '.' );

That is definitely an error you made: ext should be defined as:
const char *ext;

_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk

Reply via email to