gtk_adjustment_value_changed method
what does gtk_adjustment_value_changed method signify. Can i increment gtk_adjustment_value_changed value instead of value
Reg开发者_如何学Cards, 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.
精彩评论