diff options
author | Sarfraaz Ahmed <asarfraaz@novell.com> | 2005-07-14 19:18:35 +0800 |
---|---|---|
committer | Ahmed Sarfraaz <sarfraaz@src.gnome.org> | 2005-07-14 19:18:35 +0800 |
commit | 6719396397c43cbacf8688a366029b98d563f990 (patch) | |
tree | d7bd9cab28f116734f830cf2c8b8b490b50c7e39 /plugins/exchange-operations/exchange-calendar.c | |
parent | a714a01aeb70692229f0994d1530b6c9dadd1f29 (diff) | |
download | gsoc2013-evolution-6719396397c43cbacf8688a366029b98d563f990.tar gsoc2013-evolution-6719396397c43cbacf8688a366029b98d563f990.tar.gz gsoc2013-evolution-6719396397c43cbacf8688a366029b98d563f990.tar.bz2 gsoc2013-evolution-6719396397c43cbacf8688a366029b98d563f990.tar.lz gsoc2013-evolution-6719396397c43cbacf8688a366029b98d563f990.tar.xz gsoc2013-evolution-6719396397c43cbacf8688a366029b98d563f990.tar.zst gsoc2013-evolution-6719396397c43cbacf8688a366029b98d563f990.zip |
Fixed some compile time warnings
2005-07-14 Sarfraaz Ahmed <asarfraaz@novell.com>
* exchange-account-setup.c :
* exchange-calendar.c :
* exchange-folder-size-display.c :
* exchange-permissions-dialog.c : Fixed some compile time warnings
svn path=/trunk/; revision=29769
Diffstat (limited to 'plugins/exchange-operations/exchange-calendar.c')
-rw-r--r-- | plugins/exchange-operations/exchange-calendar.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/plugins/exchange-operations/exchange-calendar.c b/plugins/exchange-operations/exchange-calendar.c index 6e4c50aa28..d078089910 100644 --- a/plugins/exchange-operations/exchange-calendar.c +++ b/plugins/exchange-operations/exchange-calendar.c @@ -129,21 +129,20 @@ GtkWidget * e_exchange_calendar_pcalendar (EPlugin *epl, EConfigHookItemFactoryData *data) { static GtkWidget *lbl_pcalendar, *scrw_pcalendar, *tv_pcalendar; + static GtkWidget *hidden = NULL; GtkWidget *parent; GtkTreeStore *ts_pcalendar; GtkCellRenderer *cr_calendar; GtkTreeViewColumn *tvc_calendar; GPtrArray *callist; - gchar *ruri; - ExchangeAccount *account; - gchar *account_name; - ECalSourceType *type; - int row, i; ECalConfigTargetSource *t = (ECalConfigTargetSource *) data->target; EUri *uri; + ExchangeAccount *account; + gchar *ruri; + gchar *account_name; gchar *uri_text; gboolean src_exists = TRUE; - static GtkWidget *hidden = NULL; + int row, i; if (!hidden) hidden = gtk_label_new (""); |