hmmmm, corrections?

This commit is contained in:
Tim Janik
1998-05-03 20:48:15 +00:00
parent 5c9af6b5aa
commit c0b9232351
8 changed files with 8 additions and 17 deletions

View File

@ -1,8 +1,7 @@
Sun May 3 19:45:09 1998 Tim Janik <timj@gtk.org>
* gtk/gtkadjustment.c (gtk_adjustment_assimilate_value): new function
to set the adjustments value without causing a current emission of
"value_changed" to be restarted.
to set the adjustments value when there is no current emissioin.
* gtk/gtksignal.c: added new functions to retrive the number of
existing emissions for a certain signal.

View File

@ -1,8 +1,7 @@
Sun May 3 19:45:09 1998 Tim Janik <timj@gtk.org>
* gtk/gtkadjustment.c (gtk_adjustment_assimilate_value): new function
to set the adjustments value without causing a current emission of
"value_changed" to be restarted.
to set the adjustments value when there is no current emissioin.
* gtk/gtksignal.c: added new functions to retrive the number of
existing emissions for a certain signal.

View File

@ -1,8 +1,7 @@
Sun May 3 19:45:09 1998 Tim Janik <timj@gtk.org>
* gtk/gtkadjustment.c (gtk_adjustment_assimilate_value): new function
to set the adjustments value without causing a current emission of
"value_changed" to be restarted.
to set the adjustments value when there is no current emissioin.
* gtk/gtksignal.c: added new functions to retrive the number of
existing emissions for a certain signal.

View File

@ -1,8 +1,7 @@
Sun May 3 19:45:09 1998 Tim Janik <timj@gtk.org>
* gtk/gtkadjustment.c (gtk_adjustment_assimilate_value): new function
to set the adjustments value without causing a current emission of
"value_changed" to be restarted.
to set the adjustments value when there is no current emissioin.
* gtk/gtksignal.c: added new functions to retrive the number of
existing emissions for a certain signal.

View File

@ -1,8 +1,7 @@
Sun May 3 19:45:09 1998 Tim Janik <timj@gtk.org>
* gtk/gtkadjustment.c (gtk_adjustment_assimilate_value): new function
to set the adjustments value without causing a current emission of
"value_changed" to be restarted.
to set the adjustments value when there is no current emissioin.
* gtk/gtksignal.c: added new functions to retrive the number of
existing emissions for a certain signal.

View File

@ -1,8 +1,7 @@
Sun May 3 19:45:09 1998 Tim Janik <timj@gtk.org>
* gtk/gtkadjustment.c (gtk_adjustment_assimilate_value): new function
to set the adjustments value without causing a current emission of
"value_changed" to be restarted.
to set the adjustments value when there is no current emissioin.
* gtk/gtksignal.c: added new functions to retrive the number of
existing emissions for a certain signal.

View File

@ -1,8 +1,7 @@
Sun May 3 19:45:09 1998 Tim Janik <timj@gtk.org>
* gtk/gtkadjustment.c (gtk_adjustment_assimilate_value): new function
to set the adjustments value without causing a current emission of
"value_changed" to be restarted.
to set the adjustments value when there is no current emissioin.
* gtk/gtksignal.c: added new functions to retrive the number of
existing emissions for a certain signal.

View File

@ -144,9 +144,7 @@ gtk_adjustment_assimilate_value (GtkAdjustment *adjustment,
g_return_if_fail (GTK_IS_ADJUSTMENT (adjustment));
if (gtk_signal_n_emissions (GTK_OBJECT (adjustment),
adjustment_signals[VALUE_CHANGED]))
adjustment->value = CLAMP (value, adjustment->lower, adjustment->upper);
else
adjustment_signals[VALUE_CHANGED]) == 0)
gtk_adjustment_set_value (adjustment, value);
}