summaryrefslogtreecommitdiff
path: root/src/bookmarks/ephy-bookmarks-import.c
diff options
context:
space:
mode:
authorJan-Michael Brummer <jan.brummer@tabos.org>2019-07-15 20:37:36 +0200
committerJan-Michael Brummer <jan.brummer@tabos.org>2019-07-15 20:37:36 +0200
commit4c719915f66e4eb706830ab399f9815e32d2aa49 (patch)
tree803d9bdd9d287d744d4c5bc0cac27bfde0573896 /src/bookmarks/ephy-bookmarks-import.c
parent60d88e8045ba2dabcb33b659a9929a703a14fed3 (diff)
downloadepiphany-4c719915f66e4eb706830ab399f9815e32d2aa49.tar.gz
Mass update: Apply uncrustify style to everything
Diffstat (limited to 'src/bookmarks/ephy-bookmarks-import.c')
-rw-r--r--src/bookmarks/ephy-bookmarks-import.c52
1 files changed, 26 insertions, 26 deletions
diff --git a/src/bookmarks/ephy-bookmarks-import.c b/src/bookmarks/ephy-bookmarks-import.c
index 048f45c7e..8862b995f 100644
--- a/src/bookmarks/ephy-bookmarks-import.c
+++ b/src/bookmarks/ephy-bookmarks-import.c
@@ -29,7 +29,7 @@
#include <glib/gi18n.h>
GQuark bookmarks_import_error_quark (void);
-G_DEFINE_QUARK (bookmarks-import-error-quark, bookmarks_import_error)
+G_DEFINE_QUARK (bookmarks - import - error - quark, bookmarks_import_error)
#define BOOKMARKS_IMPORT_ERROR bookmarks_import_error_quark ()
typedef enum {
@@ -149,21 +149,21 @@ ephy_bookmarks_import (EphyBookmarksManager *manager,
bookmarks = get_bookmarks_from_table (table);
ephy_bookmarks_manager_add_bookmarks (manager, bookmarks);
- out:
- if (table)
- gvdb_table_free (table);
- if (bookmarks)
- g_sequence_free (bookmarks);
- if (root_table)
- gvdb_table_free (root_table);
+out:
+ if (table)
+ gvdb_table_free (table);
+ if (bookmarks)
+ g_sequence_free (bookmarks);
+ if (root_table)
+ gvdb_table_free (root_table);
return res;
}
static void
-load_tags_for_bookmark (EphySQLiteConnection *connection,
- EphyBookmark *bookmark,
- int bookmark_id)
+load_tags_for_bookmark (EphySQLiteConnection *connection,
+ EphyBookmark *bookmark,
+ int bookmark_id)
{
EphyBookmarksManager *manager = ephy_shell_get_bookmarks_manager (ephy_shell_get_default ());
EphySQLiteStatement *statement = NULL;
@@ -202,11 +202,11 @@ load_tags_for_bookmark (EphySQLiteConnection *connection,
goto out;
}
- out:
- if (statement)
- g_object_unref (statement);
- if (error)
- g_error_free (error);
+out:
+ if (statement)
+ g_object_unref (statement);
+ if (error)
+ g_error_free (error);
}
gboolean
@@ -294,16 +294,16 @@ ephy_bookmarks_import_from_firefox (EphyBookmarksManager *manager,
ephy_bookmarks_manager_add_bookmarks (manager, bookmarks);
- out:
- g_free (filename);
- if (connection) {
- ephy_sqlite_connection_close (connection);
- g_object_unref (connection);
- }
- if (statement)
- g_object_unref (statement);
- if (bookmarks)
- g_sequence_free (bookmarks);
+out:
+ g_free (filename);
+ if (connection) {
+ ephy_sqlite_connection_close (connection);
+ g_object_unref (connection);
+ }
+ if (statement)
+ g_object_unref (statement);
+ if (bookmarks)
+ g_sequence_free (bookmarks);
return ret;
}