diff options
author | Chris Toshok <toshok@ximian.com> | 2002-11-30 14:19:40 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2002-11-30 14:19:40 +0800 |
commit | bf795a3e81169f1391ac332dbf057243ab0a7992 (patch) | |
tree | fbe2ba1b22dd0ebe1c980f3d85c87b0d701121e2 /addressbook | |
parent | 42e49504cbdd52781192eb0ed8fce444901c207c (diff) | |
download | gsoc2013-evolution-bf795a3e81169f1391ac332dbf057243ab0a7992.tar.gz gsoc2013-evolution-bf795a3e81169f1391ac332dbf057243ab0a7992.tar.zst gsoc2013-evolution-bf795a3e81169f1391ac332dbf057243ab0a7992.zip |
the detail is supposed to go after the signal id, not at the end of the
2002-11-29 Chris Toshok <toshok@ximian.com>
* gui/widgets/e-minicard-view-widget.c (column_width_changed): the
detail is supposed to go after the signal id, not at the end of
the parameter list.
svn path=/trunk/; revision=18958
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 6 | ||||
-rw-r--r-- | addressbook/gui/widgets/e-minicard-view-widget.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 12e032f783..56cdd05021 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,9 @@ +2002-11-29 Chris Toshok <toshok@ximian.com> + + * gui/widgets/e-minicard-view-widget.c (column_width_changed): the + detail is supposed to go after the signal id, not at the end of + the parameter list. + 2002-11-28 Chris Toshok <toshok@ximian.com> [ roll forward from 1.2 branch, partial fix for #31763 ] * gui/component/select-names/select-names.glade: add the Find diff --git a/addressbook/gui/widgets/e-minicard-view-widget.c b/addressbook/gui/widgets/e-minicard-view-widget.c index 8113eb3c59..7a12860a3e 100644 --- a/addressbook/gui/widgets/e-minicard-view-widget.c +++ b/addressbook/gui/widgets/e-minicard-view-widget.c @@ -302,7 +302,7 @@ static void column_width_changed (ESelectionModel *esm, double width, EMinicardViewWidget *widget) { g_signal_emit (widget, - signals [COLUMN_WIDTH_CHANGED], width, 0); + signals [COLUMN_WIDTH_CHANGED], 0, width); } static guint |