aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@src.gnome.org>2005-03-03 02:23:20 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2005-03-03 02:23:20 +0800
commita4a674c9f1018333f0c83368ed5de3bff453799d (patch)
treea77a4f38a08ecb794f2f5e90cd15c65dabc9afa5
parent5509f7fda780dd9891b39fe6990753dbec733898 (diff)
downloadgsoc2013-evolution-a4a674c9f1018333f0c83368ed5de3bff453799d.tar
gsoc2013-evolution-a4a674c9f1018333f0c83368ed5de3bff453799d.tar.gz
gsoc2013-evolution-a4a674c9f1018333f0c83368ed5de3bff453799d.tar.bz2
gsoc2013-evolution-a4a674c9f1018333f0c83368ed5de3bff453799d.tar.lz
gsoc2013-evolution-a4a674c9f1018333f0c83368ed5de3bff453799d.tar.xz
gsoc2013-evolution-a4a674c9f1018333f0c83368ed5de3bff453799d.tar.zst
gsoc2013-evolution-a4a674c9f1018333f0c83368ed5de3bff453799d.zip
Reverted not approved patch
svn path=/trunk/; revision=28941
-rw-r--r--plugins/save-calendar/ChangeLog5
-rw-r--r--plugins/save-calendar/csv-format.c2
-rw-r--r--plugins/save-calendar/rdf-format.c2
3 files changed, 2 insertions, 7 deletions
diff --git a/plugins/save-calendar/ChangeLog b/plugins/save-calendar/ChangeLog
index a34d307635..e9c35b06c3 100644
--- a/plugins/save-calendar/ChangeLog
+++ b/plugins/save-calendar/ChangeLog
@@ -1,10 +1,5 @@
2005-03-02 Philip Van Hoof <pvanhoof@gnome.org>
- * rdf-format.c: Fixes for Bug #73099 and Bug #73098
- * csv-format.c: Changed malloc to g_malloc and char to gchar
-
-2005-03-02 Philip Van Hoof <pvanhoof@gnome.org>
-
* csv-format.c: Fixes for Bug #73099 and Bug #73098
2005-02-24 Björn Torkelsson <torkel@acc.umu.se>
diff --git a/plugins/save-calendar/csv-format.c b/plugins/save-calendar/csv-format.c
index 1d9cf8ce67..e414571af8 100644
--- a/plugins/save-calendar/csv-format.c
+++ b/plugins/save-calendar/csv-format.c
@@ -161,7 +161,7 @@ add_time_to_csv (GString *line, icaltimetype *time, CsvConfig *config)
if (time) {
gboolean needquotes = FALSE;
struct tm mytm = icaltimetype_to_tm (time);
- gchar *str = (gchar*) g_malloc (sizeof (gchar) * 200);
+ gchar *str = (char*) g_malloc (sizeof (char) * 200);
/*
* Translator: the %F %T is the thirth argument for a strftime function.
diff --git a/plugins/save-calendar/rdf-format.c b/plugins/save-calendar/rdf-format.c
index 1f120b46a4..268b17798a 100644
--- a/plugins/save-calendar/rdf-format.c
+++ b/plugins/save-calendar/rdf-format.c
@@ -146,7 +146,7 @@ add_time_to_rdf (xmlNodePtr node, const gchar *tag, icaltimetype *time)
if (time) {
xmlNodePtr cur_node = NULL;
struct tm mytm = icaltimetype_to_tm (time);
- gchar *str = (gchar*) g_malloc (sizeof (gchar) * 200);
+ gchar *str = (gchar*) g_malloc (sizeof (char) * 200);
gchar *tmp = NULL;
/*