diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-05-17 00:11:55 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-05-17 00:11:55 +0800 |
commit | e4fa8fe10408c4c370e1e11e4bb2d7745f50aceb (patch) | |
tree | 319f9a8d7601f7f0d028e6942aced54c439b8693 /calendar/gui/e-cal-menu.h | |
parent | ea3e4f239a529716452159d5deac20cd9a38c832 (diff) | |
download | gsoc2013-evolution-e4fa8fe10408c4c370e1e11e4bb2d7745f50aceb.tar.gz gsoc2013-evolution-e4fa8fe10408c4c370e1e11e4bb2d7745f50aceb.tar.zst gsoc2013-evolution-e4fa8fe10408c4c370e1e11e4bb2d7745f50aceb.zip |
Fix several types of pedantic compiler warnings.
Diffstat (limited to 'calendar/gui/e-cal-menu.h')
-rw-r--r-- | calendar/gui/e-cal-menu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/e-cal-menu.h b/calendar/gui/e-cal-menu.h index 30962d9a1a..9c37a6a9ae 100644 --- a/calendar/gui/e-cal-menu.h +++ b/calendar/gui/e-cal-menu.h @@ -39,7 +39,7 @@ typedef struct _ECalMenuClass ECalMenuClass; /* Current target description */ /* Types of popup tagets */ enum _e_cal_menu_target_t { - E_CAL_MENU_TARGET_SELECT, + E_CAL_MENU_TARGET_SELECT }; /** @@ -73,7 +73,7 @@ enum _e_cal_menu_target_select_t { E_CAL_MENU_SELECT_ASSIGNABLE = 1<<10, E_CAL_MENU_SELECT_HASURL = 1<<11, - E_CAL_MENU_SELECT_NOTCOMPLETE = 1<<12, + E_CAL_MENU_SELECT_NOTCOMPLETE = 1<<12 }; typedef struct _ECalMenuTargetSelect ECalMenuTargetSelect; |