summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjacob berkman <jacob@ximian.com>2002-03-18 23:08:38 +0000
committerJacob Berkman <jberkman@src.gnome.org>2002-03-18 23:08:38 +0000
commit226b6a3e357c45bcfa48e2564ed7ef807a32e07d (patch)
tree9cc2bd511da0f84cf33a8d961ce207b9645c36d8
parentac7e3c958454c0c5420cd43f2b6c1c0a527f4923 (diff)
downloadgdk-pixbuf-226b6a3e357c45bcfa48e2564ed7ef807a32e07d.tar.gz
set the correct min/max values for the ratio property (fixes #75331)
2002-03-18 jacob berkman <jacob@ximian.com> * gtk/gtkaspectframe.c (gtk_aspect_frame_class_init): set the correct min/max values for the ratio property (fixes #75331)
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.pre-2-105
-rw-r--r--ChangeLog.pre-2-25
-rw-r--r--ChangeLog.pre-2-45
-rw-r--r--ChangeLog.pre-2-65
-rw-r--r--ChangeLog.pre-2-85
-rw-r--r--gtk/gtkaspectframe.c2
7 files changed, 31 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 823809230..49a81ef3f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-03-18 jacob berkman <jacob@ximian.com>
+
+ * gtk/gtkaspectframe.c (gtk_aspect_frame_class_init): set the
+ correct min/max values for the ratio property (fixes #75331)
+
Mon Mar 18 11:55:03 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkimmulticontext.c (gtk_im_multicontext_get_slave):
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index 823809230..49a81ef3f 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -1,3 +1,8 @@
+2002-03-18 jacob berkman <jacob@ximian.com>
+
+ * gtk/gtkaspectframe.c (gtk_aspect_frame_class_init): set the
+ correct min/max values for the ratio property (fixes #75331)
+
Mon Mar 18 11:55:03 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkimmulticontext.c (gtk_im_multicontext_get_slave):
diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2
index 823809230..49a81ef3f 100644
--- a/ChangeLog.pre-2-2
+++ b/ChangeLog.pre-2-2
@@ -1,3 +1,8 @@
+2002-03-18 jacob berkman <jacob@ximian.com>
+
+ * gtk/gtkaspectframe.c (gtk_aspect_frame_class_init): set the
+ correct min/max values for the ratio property (fixes #75331)
+
Mon Mar 18 11:55:03 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkimmulticontext.c (gtk_im_multicontext_get_slave):
diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4
index 823809230..49a81ef3f 100644
--- a/ChangeLog.pre-2-4
+++ b/ChangeLog.pre-2-4
@@ -1,3 +1,8 @@
+2002-03-18 jacob berkman <jacob@ximian.com>
+
+ * gtk/gtkaspectframe.c (gtk_aspect_frame_class_init): set the
+ correct min/max values for the ratio property (fixes #75331)
+
Mon Mar 18 11:55:03 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkimmulticontext.c (gtk_im_multicontext_get_slave):
diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6
index 823809230..49a81ef3f 100644
--- a/ChangeLog.pre-2-6
+++ b/ChangeLog.pre-2-6
@@ -1,3 +1,8 @@
+2002-03-18 jacob berkman <jacob@ximian.com>
+
+ * gtk/gtkaspectframe.c (gtk_aspect_frame_class_init): set the
+ correct min/max values for the ratio property (fixes #75331)
+
Mon Mar 18 11:55:03 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkimmulticontext.c (gtk_im_multicontext_get_slave):
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index 823809230..49a81ef3f 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -1,3 +1,8 @@
+2002-03-18 jacob berkman <jacob@ximian.com>
+
+ * gtk/gtkaspectframe.c (gtk_aspect_frame_class_init): set the
+ correct min/max values for the ratio property (fixes #75331)
+
Mon Mar 18 11:55:03 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkimmulticontext.c (gtk_im_multicontext_get_slave):
diff --git a/gtk/gtkaspectframe.c b/gtk/gtkaspectframe.c
index 87f56749c..b0c58b1c7 100644
--- a/gtk/gtkaspectframe.c
+++ b/gtk/gtkaspectframe.c
@@ -120,7 +120,7 @@ gtk_aspect_frame_class_init (GtkAspectFrameClass *class)
g_param_spec_float ("ratio",
_("Ratio"),
_("Aspect ratio if obey_child is FALSE"),
- 0.0, 1.0, 0.5,
+ MIN_RATIO, MAX_RATIO, 0.5,
G_PARAM_READABLE | G_PARAM_WRITABLE ));
g_object_class_install_property (gobject_class,
PROP_OBEY_CHILD,