aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-memos.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@src.gnome.org>2007-06-03 10:10:05 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2007-06-03 10:10:05 +0800
commita01dfc76dc4fe9374f25d7fde53a78c4cf7efd0e (patch)
tree51415e9b150ae8e8de2db5a3d7c529f90829bd90 /calendar/gui/e-memos.c
parent677df14504c5ad80efbb417c6ceea8d8494e583d (diff)
downloadgsoc2013-evolution-a01dfc76dc4fe9374f25d7fde53a78c4cf7efd0e.tar
gsoc2013-evolution-a01dfc76dc4fe9374f25d7fde53a78c4cf7efd0e.tar.gz
gsoc2013-evolution-a01dfc76dc4fe9374f25d7fde53a78c4cf7efd0e.tar.bz2
gsoc2013-evolution-a01dfc76dc4fe9374f25d7fde53a78c4cf7efd0e.tar.lz
gsoc2013-evolution-a01dfc76dc4fe9374f25d7fde53a78c4cf7efd0e.tar.xz
gsoc2013-evolution-a01dfc76dc4fe9374f25d7fde53a78c4cf7efd0e.tar.zst
gsoc2013-evolution-a01dfc76dc4fe9374f25d7fde53a78c4cf7efd0e.zip
Fix compiler warnings in the calendar directory (#439122).
svn path=/trunk/; revision=33625
Diffstat (limited to 'calendar/gui/e-memos.c')
-rw-r--r--calendar/gui/e-memos.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/calendar/gui/e-memos.c b/calendar/gui/e-memos.c
index e87761974d..e53a2644a0 100644
--- a/calendar/gui/e-memos.c
+++ b/calendar/gui/e-memos.c
@@ -371,7 +371,7 @@ table_drag_data_get (ETable *table,
comp_str = icalcomponent_as_ical_string (vcal);
if (comp_str) {
gtk_selection_data_set (selection_data, selection_data->target,
- 8, comp_str, strlen (comp_str));
+ 8, (unsigned char *)comp_str, strlen (comp_str));
}
icalcomponent_free (vcal);
}
@@ -718,7 +718,6 @@ backend_error_cb (ECal *client, const char *message, gpointer data)
{
EMemos *memos;
GtkWidget *dialog;
- char *errmsg;
char *urinopwd;
memos = E_MEMOS (data);