aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@ximian.com>2004-04-01 18:00:26 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2004-04-01 18:00:26 +0800
commit16cc716139de0cfe8679a1f86a72fed92cf7b189 (patch)
tree75ea881666ec8732517fc340facecd59b761e793 /calendar/gui
parent0b6ec98b917eb6b2a7e07ddf1a6f352642e202fb (diff)
downloadgsoc2013-evolution-16cc716139de0cfe8679a1f86a72fed92cf7b189.tar
gsoc2013-evolution-16cc716139de0cfe8679a1f86a72fed92cf7b189.tar.gz
gsoc2013-evolution-16cc716139de0cfe8679a1f86a72fed92cf7b189.tar.bz2
gsoc2013-evolution-16cc716139de0cfe8679a1f86a72fed92cf7b189.tar.lz
gsoc2013-evolution-16cc716139de0cfe8679a1f86a72fed92cf7b189.tar.xz
gsoc2013-evolution-16cc716139de0cfe8679a1f86a72fed92cf7b189.tar.zst
gsoc2013-evolution-16cc716139de0cfe8679a1f86a72fed92cf7b189.zip
return correct values (boolean).
2004-04-01 Rodrigo Moya <rodrigo@ximian.com> * gui/dialogs/recur-comp.c (recur_component_dialog): return correct values (boolean). svn path=/trunk/; revision=25276
Diffstat (limited to 'calendar/gui')
-rw-r--r--calendar/gui/dialogs/recur-comp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/dialogs/recur-comp.c b/calendar/gui/dialogs/recur-comp.c
index f097d542f7..d18f6bc59d 100644
--- a/calendar/gui/dialogs/recur-comp.c
+++ b/calendar/gui/dialogs/recur-comp.c
@@ -41,7 +41,7 @@ recur_component_dialog (ECal *client,
ECalComponentVType vtype;
gboolean ret;
- g_return_val_if_fail (E_IS_CAL_COMPONENT (comp), CALOBJ_MOD_THIS);
+ g_return_val_if_fail (E_IS_CAL_COMPONENT (comp), FALSE);
vtype = e_cal_component_get_vtype (comp);
@@ -60,7 +60,7 @@ recur_component_dialog (ECal *client,
default:
g_message ("recur_component_dialog(): Cannot handle object of type %d", vtype);
- return CALOBJ_MOD_THIS;
+ return FALSE;
}