diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-shell-window.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index b0682dc140..cd3b213915 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2007-03-29 Matthew Barnes <mbarnes@redhat.com> + + * e-shell-window.c: + Fix "incompatible pointer type" warnings (#360619). + 2007-03-20 Matthew Barnes <mbarnes@redhat.com> ** Fixes part of bug #419524 diff --git a/shell/e-shell-window.c b/shell/e-shell-window.c index 0ed77f19fe..541ddbcc26 100644 --- a/shell/e-shell-window.c +++ b/shell/e-shell-window.c @@ -862,7 +862,7 @@ impl_dispose (GObject *object) self->priv->store_window_size_timer = 0; /* There was a timer. Let us store the settings.*/ - store_window_size (self); + store_window_size (GTK_WIDGET (self)); } #ifdef NM_SUPPORT_GLIB |