aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/backup-restore/backup.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-09-12 02:56:28 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-09-13 20:28:58 +0800
commitcd53ba990035bdb4861d9660917d457533d4ecb2 (patch)
treed9c9da2208f4a921c514497ea92d27e3d88481d1 /plugins/backup-restore/backup.c
parentb2b27cfa1bfcd6efdac30d2745a6e8cd4e6de134 (diff)
downloadgsoc2013-evolution-cd53ba990035bdb4861d9660917d457533d4ecb2.tar
gsoc2013-evolution-cd53ba990035bdb4861d9660917d457533d4ecb2.tar.gz
gsoc2013-evolution-cd53ba990035bdb4861d9660917d457533d4ecb2.tar.bz2
gsoc2013-evolution-cd53ba990035bdb4861d9660917d457533d4ecb2.tar.lz
gsoc2013-evolution-cd53ba990035bdb4861d9660917d457533d4ecb2.tar.xz
gsoc2013-evolution-cd53ba990035bdb4861d9660917d457533d4ecb2.tar.zst
gsoc2013-evolution-cd53ba990035bdb4861d9660917d457533d4ecb2.zip
Coding style cleanups.
Diffstat (limited to 'plugins/backup-restore/backup.c')
-rw-r--r--plugins/backup-restore/backup.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/backup-restore/backup.c b/plugins/backup-restore/backup.c
index 5b39374b58..104afe7166 100644
--- a/plugins/backup-restore/backup.c
+++ b/plugins/backup-restore/backup.c
@@ -183,7 +183,7 @@ backup (const gchar *filename)
gchar *quotedfname;
g_return_if_fail (filename && *filename);
- quotedfname = g_shell_quote(filename);
+ quotedfname = g_shell_quote (filename);
CANCEL (complete);
txt = _("Shutting down Evolution");
@@ -244,7 +244,7 @@ restore (const gchar *filename)
return;
}
- quotedfname = g_shell_quote(filename);
+ quotedfname = g_shell_quote (filename);
/* FIXME Will the versioned setting always work? */
CANCEL (complete);
@@ -296,7 +296,7 @@ check (const gchar *filename)
gchar *quotedfname;
g_return_val_if_fail (filename && *filename, FALSE);
- quotedfname = g_shell_quote(filename);
+ quotedfname = g_shell_quote (filename);
command = g_strdup_printf ("tar ztf %s 1>/dev/null", quotedfname);
result = system (command);
@@ -353,11 +353,11 @@ thread_start (gpointer data)
complete = TRUE;
- return GINT_TO_POINTER(result);
+ return GINT_TO_POINTER (result);
}
static gboolean
-idle_cb(gpointer data)
+idle_cb (gpointer data)
{
if (gui_arg) {
/* Show progress dialog */
@@ -476,7 +476,7 @@ main (gint argc, gchar **argv)
gtk_container_set_border_width (GTK_CONTAINER (action_area), 0);
if (oper && file)
- str = g_strdup_printf(oper, file);
+ str = g_strdup_printf (oper, file);
container = gtk_table_new (2, 3, FALSE);
gtk_table_set_col_spacings (GTK_TABLE (container), 12);