summaryrefslogtreecommitdiff
path: root/gtk/gtkcolorseldialog.c
diff options
context:
space:
mode:
authorManish Singh <yosh@gimp.org>2002-10-13 19:34:42 +0000
committerManish Singh <yosh@src.gnome.org>2002-10-13 19:34:42 +0000
commitc77265d3a7326bbe184c14bd85eed17712905e31 (patch)
tree3e746af88994e12cdfea51ff8a643f41e54b1ec8 /gtk/gtkcolorseldialog.c
parentfb716863df14ce63362d1251f89c595dbe153168 (diff)
downloadgtk+-c77265d3a7326bbe184c14bd85eed17712905e31.tar.gz
Deprecation cleanup
Sun Oct 13 12:29:15 2002 Manish Singh <yosh@gimp.org> * gtk/gtkcolorsel.[ch] gtk/gtkcombo.[ch] gtk/gtkplug.[ch] gtk/gtksocket.[ch] gtk/gtktreeview.[ch] gtk/gtktreeviewcolumn.[ch]: Deprecation cleanup * gtk/gtkcolorseldialog.c: make window not resizable (lost accidently in the previous cleanup)
Diffstat (limited to 'gtk/gtkcolorseldialog.c')
-rw-r--r--gtk/gtkcolorseldialog.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk/gtkcolorseldialog.c b/gtk/gtkcolorseldialog.c
index 3d16c0a029..d93c967ca9 100644
--- a/gtk/gtkcolorseldialog.c
+++ b/gtk/gtkcolorseldialog.c
@@ -119,6 +119,7 @@ gtk_color_selection_dialog_new (const gchar *title)
colorseldiag = g_object_new (GTK_TYPE_COLOR_SELECTION_DIALOG, NULL);
gtk_window_set_title (GTK_WINDOW (colorseldiag), title);
+ gtk_window_set_resizable (GTK_WINDOW (colorseldiag), FALSE);
return GTK_WIDGET (colorseldiag);
}