DO NOT REPLY TO THIS MESSAGE.  INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.

[STR New]

Link: http://www.fltk.org/str.php?L2033
Version: 2.0-current


Using fluid2 under Windows 2000 Professional I'm not able to
assign an image to a widget (like Button or InvisibleBox).
Also the navigation dialog is not able to show the preview.
Debuggin fluid2 with Microsoft Visual Studio 2005 I found
out that the function

const char* SharedImage::get_filename(const char* name)

in file SharedImage.cxx returns a wron pathname. To be able
to use fluid2 I modified such function as follow:

const char* SharedImage::get_filename(const char* name)
{
#ifndef WIN32

        // original code here

#else
        return name;
#endif
}

All works properly under Linux.

Best Regards.


Link: http://www.fltk.org/str.php?L2033
Version: 2.0-current

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

Reply via email to