diff options
author | Milan Crha <mcrha@redhat.com> | 2009-08-08 00:05:18 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-08-12 05:47:08 +0800 |
commit | 4846995f5ebab385dcae061cc30fa86486ac4ad4 (patch) | |
tree | 7ba50c0364ecf17af69c3a885b8a0c09bf541c5f /calendar/gui/cal-editor-utils.h | |
parent | e9071c9f1dc185c11b2992a2fc78330782428f58 (diff) | |
download | gsoc2013-evolution-4846995f5ebab385dcae061cc30fa86486ac4ad4.tar gsoc2013-evolution-4846995f5ebab385dcae061cc30fa86486ac4ad4.tar.gz gsoc2013-evolution-4846995f5ebab385dcae061cc30fa86486ac4ad4.tar.bz2 gsoc2013-evolution-4846995f5ebab385dcae061cc30fa86486ac4ad4.tar.lz gsoc2013-evolution-4846995f5ebab385dcae061cc30fa86486ac4ad4.tar.xz gsoc2013-evolution-4846995f5ebab385dcae061cc30fa86486ac4ad4.tar.zst gsoc2013-evolution-4846995f5ebab385dcae061cc30fa86486ac4ad4.zip |
Bug #584030 - [Mail-To-Task] improve duplicate handling and such
Diffstat (limited to 'calendar/gui/cal-editor-utils.h')
-rw-r--r-- | calendar/gui/cal-editor-utils.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/calendar/gui/cal-editor-utils.h b/calendar/gui/cal-editor-utils.h new file mode 100644 index 0000000000..211684eb20 --- /dev/null +++ b/calendar/gui/cal-editor-utils.h @@ -0,0 +1,38 @@ +/* + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) version 3. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with the program; if not, see <http://www.gnu.org/licenses/> + * + * + * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com) + * + */ + +#ifndef CAL_EDITOR_UTILS_H +#define CAL_EDITOR_UTILS_H + +#include <glib.h> +#include <libecal/e-cal.h> +#include <libecal/e-cal-component.h> +#include <shell/e-shell.h> + +G_BEGIN_DECLS + +void open_component_editor (EShell *shell, + ECal *client, + ECalComponent *comp, + gboolean is_new, + GError **error); + +G_END_DECLS + +#endif /* CAL_EDITOR_UTILS_H */ |