summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Janik <timj@src.gnome.org>1998-05-03 20:48:15 +0000
committerTim Janik <timj@src.gnome.org>1998-05-03 20:48:15 +0000
commitc0b92323516fef167517dc9ab645dcfd4075227e (patch)
treee87fabc88a4a60a93e83dade12dcadbb8b6af93a
parent5c9af6b5aa97417b6ec52018d30cf11790560110 (diff)
downloadgtk+-c0b92323516fef167517dc9ab645dcfd4075227e.tar.gz
hmmmm, corrections?
-rw-r--r--ChangeLog3
-rw-r--r--ChangeLog.pre-2-03
-rw-r--r--ChangeLog.pre-2-103
-rw-r--r--ChangeLog.pre-2-23
-rw-r--r--ChangeLog.pre-2-43
-rw-r--r--ChangeLog.pre-2-63
-rw-r--r--ChangeLog.pre-2-83
-rw-r--r--gtk/gtkadjustment.c4
8 files changed, 8 insertions, 17 deletions
diff --git a/ChangeLog b/ChangeLog
index 21f31499da..ef47755972 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0
index 21f31499da..ef47755972 100644
--- a/ChangeLog.pre-2-0
+++ b/ChangeLog.pre-2-0
@@ -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.
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index 21f31499da..ef47755972 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -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.
diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2
index 21f31499da..ef47755972 100644
--- a/ChangeLog.pre-2-2
+++ b/ChangeLog.pre-2-2
@@ -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.
diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4
index 21f31499da..ef47755972 100644
--- a/ChangeLog.pre-2-4
+++ b/ChangeLog.pre-2-4
@@ -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.
diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6
index 21f31499da..ef47755972 100644
--- a/ChangeLog.pre-2-6
+++ b/ChangeLog.pre-2-6
@@ -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.
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index 21f31499da..ef47755972 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -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.
diff --git a/gtk/gtkadjustment.c b/gtk/gtkadjustment.c
index bcf2ff1b17..d8661c8fd3 100644
--- a/gtk/gtkadjustment.c
+++ b/gtk/gtkadjustment.c
@@ -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);
}