diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2008-10-24 04:23:42 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2008-10-24 04:23:42 +0000 |
commit | 7783b54328896850ca2ee4185f7e46375d2aa277 (patch) | |
tree | 3daf46577b0ddae08f1fa166621741f8183466cc | |
parent | 56253637f1b49253f91e6faf560f223cdc6ab688 (diff) | |
download | gtk+-7783b54328896850ca2ee4185f7e46375d2aa277.tar.gz |
Fix a property definition
svn path=/trunk/; revision=21709
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | gtk/gtkmountoperation.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,10 @@ 2008-10-24 Matthias Clasen <mclasen@redhat.com> + * gtk/gtkmountoperation.c: The "screen" property ought to have + type GdkScreen, not GtkWindow. Found by Cosimo Cecchi + +2008-10-24 Matthias Clasen <mclasen@redhat.com> + Bug 556954 – gtk+/gtk/gtkrecentchooserdefault.c: mismatching allocation and deallocation diff --git a/gtk/gtkmountoperation.c b/gtk/gtkmountoperation.c index d2e83c47c0..42c98f786b 100644 --- a/gtk/gtkmountoperation.c +++ b/gtk/gtkmountoperation.c @@ -175,7 +175,7 @@ gtk_mount_operation_class_init (GtkMountOperationClass *klass) g_param_spec_object ("screen", P_("Screen"), P_("The screen where this window will be displayed."), - GTK_TYPE_WINDOW, + GDK_TYPE_SCREEN, GTK_PARAM_READWRITE)); } |