Fix a property definition

svn path=/trunk/; revision=21709
This commit is contained in:
Matthias Clasen 2008-10-24 04:23:42 +00:00
parent 56253637f1
commit 7783b54328
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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

View File

@ -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));
}