diff options
author | Chris Toshok <toshok@ximian.com> | 2004-02-28 05:03:20 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2004-02-28 05:03:20 +0800 |
commit | fff6092743b55e8ad69e8e9bbb9d9fd6124c5e8e (patch) | |
tree | b3c34248bd1c567d4dfbfc233b821c725c9b2dce | |
parent | b2f76fd89dcaaf9c4b4eb5654e0bebb15bd01a34 (diff) | |
download | gsoc2013-evolution-fff6092743b55e8ad69e8e9bbb9d9fd6124c5e8e.tar.gz gsoc2013-evolution-fff6092743b55e8ad69e8e9bbb9d9fd6124c5e8e.tar.zst gsoc2013-evolution-fff6092743b55e8ad69e8e9bbb9d9fd6124c5e8e.zip |
add missing "break" to PROP_SOURCE's case.
2004-02-27 Chris Toshok <toshok@ximian.com>
* gui/widgets/e-addressbook-view.c (eab_view_set_property): add
missing "break" to PROP_SOURCE's case.
svn path=/trunk/; revision=24913
-rw-r--r-- | addressbook/ChangeLog | 5 | ||||
-rw-r--r-- | addressbook/gui/widgets/e-addressbook-view.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 07dabc1f5b..618577e50a 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,8 @@ +2004-02-27 Chris Toshok <toshok@ximian.com> + + * gui/widgets/e-addressbook-view.c (eab_view_set_property): add + missing "break" to PROP_SOURCE's case. + 2004-02-27 Rodney Dawes <dobey@ximian.com> * gui/contact-editor/contact-editor.glade: Get rid of some extraneous diff --git a/addressbook/gui/widgets/e-addressbook-view.c b/addressbook/gui/widgets/e-addressbook-view.c index 3b60560c11..a565f4a2e8 100644 --- a/addressbook/gui/widgets/e-addressbook-view.c +++ b/addressbook/gui/widgets/e-addressbook-view.c @@ -654,6 +654,7 @@ eab_view_set_property (GObject *object, guint prop_id, const GValue *value, GPar eav->source = NULL; } } + break; case PROP_QUERY: #if 0 /* This code will mess up ldap a bit. We need to think about the ramifications of this more. */ if ((g_value_get_string (value) == NULL && !strcmp (eav->query, SHOW_ALL_SEARCH)) || |