summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <matthiasc@src.gnome.org>2008-10-24 04:23:42 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2008-10-24 04:23:42 +0000
commit7783b54328896850ca2ee4185f7e46375d2aa277 (patch)
tree3daf46577b0ddae08f1fa166621741f8183466cc
parent56253637f1b49253f91e6faf560f223cdc6ab688 (diff)
downloadgtk+-7783b54328896850ca2ee4185f7e46375d2aa277.tar.gz
Fix a property definition
svn path=/trunk/; revision=21709
-rw-r--r--ChangeLog5
-rw-r--r--gtk/gtkmountoperation.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index a29e0f422e..7f24aa1e6c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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));
}