diff options
author | Not Zed <NotZed@Ximian.com> | 2004-02-02 15:08:36 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-02-02 15:08:36 +0800 |
commit | a8d1cfd503a41310aaec32e2e9393dc4a4651073 (patch) | |
tree | ef45e6065941cf59887858eff56db787a04a76b3 /mail/em-folder-properties.h | |
parent | 61f711d2548931f75eac2dd0e3a1e56d31e39b7e (diff) | |
download | gsoc2013-evolution-a8d1cfd503a41310aaec32e2e9393dc4a4651073.tar.gz gsoc2013-evolution-a8d1cfd503a41310aaec32e2e9393dc4a4651073.tar.zst gsoc2013-evolution-a8d1cfd503a41310aaec32e2e9393dc4a4651073.zip |
** See bug #52994.
2004-02-02 Not Zed <NotZed@Ximian.com>
** See bug #52994.
* em-folder-properties.c (em_folder_properties_show): redirect
vFolder uri's to the vFolder editor.
** See bug #53502.
* em-folder-browser.c (emfb_folder_properties): implement.
* em-folder-tree.c (emft_popup_properties): fixed for change
below.
* em-folder-properties.[ch]: Moved the folder properties window
from em-folder-tree.c to its own file.
svn path=/trunk/; revision=24564
Diffstat (limited to 'mail/em-folder-properties.h')
-rw-r--r-- | mail/em-folder-properties.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/mail/em-folder-properties.h b/mail/em-folder-properties.h new file mode 100644 index 0000000000..3fed03fc2c --- /dev/null +++ b/mail/em-folder-properties.h @@ -0,0 +1,39 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ +/* + * Authors: Michael Zucchi <notzed@ximian.com> + * + * Copyright 2003 Ximian, Inc. (www.ximian.com) + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; version 2. + * + * 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA. + * + */ + +#ifndef __EM_FOLDER_PROPERTIES_H__ +#define __EM_FOLDER_PROPERTIES_H__ + +#ifdef __cplusplus +extern "C" { +#pragma } +#endif /* __cplusplus */ + +struct _CamelFolder; +struct _GtkWindow; + +void em_folder_properties_show(struct _GtkWindow *parent, struct _CamelFolder *folder, const char *uri); + +#ifdef __cplusplus +} +#endif /* __cplusplus */ + +#endif /* __EM_FOLDER_PROPERTIES_H__ */ |