what does gtk_adjustment_value_changed method signify. Can i increment gtk_adjustment_value_changed value instead of value
Regards, iSight
If you look at the documentation for Gtk.Adjustment::value-changed
, you will see that there is no value for you to increment. This method tells the GtkAdjustment
object to emit a notification to any object that is listening to the value-changed
signal. You shouldn't have to use it in a normal application.