On 12/2/05, Bryce Harrington <bryce@...961...> wrote:
/home/bryce/src/Inkscape/inkscape/src/ui/dialog/aboutbox.cpp: In constructor ` Inkscape::UI::Dialog::AboutBox::AboutBox()': /home/bryce/src/Inkscape/inkscape/src/ui/dialog/aboutbox.cpp:88: error: no matching function for call to `Inkscape::UI::Dialog::AboutBox::size_request( )' /usr/include/gtkmm-2.4/gtkmm/widget.h:510: error: candidates are: void Gtk::Widget::size_request(const Gtk::Requisition&)
In case this was just due to out of date autoconf stuff, I'm doing a make distclean and a full rebuild.
I doubt that that helped: this is a True Bill. My guess is that the function overload for size_request( ) was added in a later release of GTKMM.
I have not been able to find this on the web, mind.
I have changed this code to
#if GTKMM_MINOR_VERSION > 4 Gtk::Requisition requisition = size_request(); #else Gtk::Requisition requisition; size_request( requisition ); #endif
which compiles, but I don't know whether it runs correctly, and I might be on the worng lines anyway.
BTW, I can't get automake to digest the Makefile_Insert for Inkboard, do you want me to post details?
Ben