25 Jun
2011
25 Jun
'11
6:05 a.m.
Hi, I was trying to compile inkscape with clang, and for many reasons this failed, however one looks like it should probably be fixed in the code.
src/ui/widget/registered-widget.h
operator const Gtk::Widget () { return dynamic_castGtk::Widget*(this); }
Should either be: operator const Gtk::Widget () { return *dynamic_castGtk::Widget*(this); } Or: operator const Gtk::Widget () { return dynamic_castGtk::Widget(this); }
--
- Campbell