[glade--]Gtk::Adjustment range bug

Philipp Klaus Krause <[email protected]> Sun, 02 May 2004 18:32:52 +0200
Newsgroups gmane.comp.gnome.glademm
Message-ID <[email protected]>
glademm sould set the upper and lower values when calling the 
Gtk::Adjustment constructor correctly.

Generated code:
Gtk::Adjustment *ground_tools_radius_adj = Gtk::manage(new class 
Gtk::Adjustment(0, 0, 100, 1, 10, 10));
    ground_tools_radius = Gtk::manage(new class 
Gtk::HScale(*ground_tools_radius_adj));

The first two parameters to the Gtk::Adjustment constructor
should be the ones set in glade not always 0 as is now.

Philipp Klaus Krause