summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2004-11-26 06:17:49 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2004-11-26 06:17:49 +0000
commit19463a94093d9d2a35891734160336696e9bd7ef (patch)
treee600793ae7fcdc4f3336bdf2dc7ed4ead2bddcc8
parent5b29d3d55e5901d3b86bf76aef96f0893e4a11fa (diff)
downloadgtk+-19463a94093d9d2a35891734160336696e9bd7ef.tar.gz
Queue a layout. (#159436, Olivier Andrieu)
2004-11-26 Matthias Clasen <mclasen@redhat.com> * gtk/gtkiconview.c (gtk_icon_view_set_model): Queue a layout. (#159436, Olivier Andrieu)
-rw-r--r--ChangeLog1
-rw-r--r--ChangeLog.pre-2-101
-rw-r--r--ChangeLog.pre-2-61
-rw-r--r--ChangeLog.pre-2-81
-rw-r--r--gtk/gtkiconview.c2
5 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index c6c2600a14..e87b10d190 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,7 @@
* gtk/gtkiconview.c (gtk_icon_view_set_model): Check column types on the
new model, and check them all. (#159389, Olivier Andrieu)
+ (gtk_icon_view_set_model): Queue a layout. (#159436, Olivier Andrieu)
* gdk/x11/gdkselection-x11.c (gdk_text_property_to_utf8_list_for_display):
Don't crash if Xlib fails to return UTF-8. (#159373, Kristian Høgsberg)
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index c6c2600a14..e87b10d190 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -2,6 +2,7 @@
* gtk/gtkiconview.c (gtk_icon_view_set_model): Check column types on the
new model, and check them all. (#159389, Olivier Andrieu)
+ (gtk_icon_view_set_model): Queue a layout. (#159436, Olivier Andrieu)
* gdk/x11/gdkselection-x11.c (gdk_text_property_to_utf8_list_for_display):
Don't crash if Xlib fails to return UTF-8. (#159373, Kristian Høgsberg)
diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6
index c6c2600a14..e87b10d190 100644
--- a/ChangeLog.pre-2-6
+++ b/ChangeLog.pre-2-6
@@ -2,6 +2,7 @@
* gtk/gtkiconview.c (gtk_icon_view_set_model): Check column types on the
new model, and check them all. (#159389, Olivier Andrieu)
+ (gtk_icon_view_set_model): Queue a layout. (#159436, Olivier Andrieu)
* gdk/x11/gdkselection-x11.c (gdk_text_property_to_utf8_list_for_display):
Don't crash if Xlib fails to return UTF-8. (#159373, Kristian Høgsberg)
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index c6c2600a14..e87b10d190 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -2,6 +2,7 @@
* gtk/gtkiconview.c (gtk_icon_view_set_model): Check column types on the
new model, and check them all. (#159389, Olivier Andrieu)
+ (gtk_icon_view_set_model): Queue a layout. (#159436, Olivier Andrieu)
* gdk/x11/gdkselection-x11.c (gdk_text_property_to_utf8_list_for_display):
Don't crash if Xlib fails to return UTF-8. (#159373, Kristian Høgsberg)
diff --git a/gtk/gtkiconview.c b/gtk/gtkiconview.c
index 9892eaaa6a..79787f093e 100644
--- a/gtk/gtkiconview.c
+++ b/gtk/gtkiconview.c
@@ -3035,6 +3035,8 @@ gtk_icon_view_set_model (GtkIconView *icon_view,
gtk_icon_view_build_items (icon_view);
}
+ gtk_icon_view_queue_layout (icon_view);
+
g_object_notify (G_OBJECT (icon_view), "model");
}