aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/save-calendar/csv-format.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/save-calendar/csv-format.c')
-rw-r--r--plugins/save-calendar/csv-format.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/plugins/save-calendar/csv-format.c b/plugins/save-calendar/csv-format.c
index 4e59b80edd..b296bb9736 100644
--- a/plugins/save-calendar/csv-format.c
+++ b/plugins/save-calendar/csv-format.c
@@ -66,15 +66,12 @@ display_error_message (GtkWidget *parent, GError *error)
gtk_widget_destroy (dialog);
}
-
enum { /* CSV helper enum */
ECALCOMPONENTTEXT,
ECALCOMPONENTATTENDEE,
CONSTCHAR
};
-
-
/* Some helpers for the csv stuff */
static GString *
add_list_to_csv (GString *line, GSList *list_in, CsvConfig *config, gint type)
@@ -202,7 +199,6 @@ string_needsquotes (const gchar *value, CsvConfig *config)
needquotes = strstr (value, config->quote) ? TRUE:FALSE;
}
-
/*
* If the special-char is char+onespace (so like {, } {" }, {\n }) and it occurs
* the value that is going to be written
@@ -218,7 +214,6 @@ string_needsquotes (const gchar *value, CsvConfig *config)
* first character of {, } and didn't trust the user).
*/
-
if (!needquotes) {
gint len = strlen (config->delimiter);
if ((len == 2) && (config->delimiter[1] == ' ')) {
@@ -521,10 +516,6 @@ do_save_calendar_csv (FormatHandler *handler, EPlugin *ep, ECalPopupTargetSource
return;
}
-
-
-
-
static GtkWidget *
create_options_widget (FormatHandler *handler)
{
@@ -570,7 +561,6 @@ create_options_widget (FormatHandler *handler)
gtk_container_add (GTK_CONTAINER (csv_options), vbox);
-
return csv_options;
}