summaryrefslogtreecommitdiff
path: root/src/fr-list-model.c
diff options
context:
space:
mode:
authorrbuj <[email protected]>2021-10-27 17:40:17 +0200
committerraveit65 <[email protected]>2021-12-11 15:59:33 +0100
commit6c55334ad9b03006686e2db6c6f6167677a2f510 (patch)
treeb558cc0ad6d97c36b449dbcb2afecb3b9002a565 /src/fr-list-model.c
parent85909393571d91b3c267afe5341e54bfae5a6d50 (diff)
downloadengrampa-6c55334ad9b03006686e2db6c6f6167677a2f510.tar.bz2
engrampa-6c55334ad9b03006686e2db6c6f6167677a2f510.tar.xz
Use a blank line at most
Diffstat (limited to 'src/fr-list-model.c')
-rw-r--r--src/fr-list-model.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/fr-list-model.c b/src/fr-list-model.c
index 78b8f1d..cd4efa2 100644
--- a/src/fr-list-model.c
+++ b/src/fr-list-model.c
@@ -25,10 +25,8 @@
#include "fr-list-model.h"
#include "fr-window.h"
-
static GtkListStoreClass *parent_class;
-
static gboolean
fr_list_model_multi_row_draggable (EggTreeMultiDragSource *drag_source,
GList *path_list)
@@ -66,7 +64,6 @@ fr_list_model_multi_row_draggable (EggTreeMultiDragSource *drag_source,
return FALSE;
}
-
static gboolean
fr_list_model_multi_drag_data_get (EggTreeMultiDragSource *drag_source,
GdkDragContext *context,
@@ -84,7 +81,6 @@ fr_list_model_multi_drag_data_get (EggTreeMultiDragSource *drag_source,
path_list);
}
-
static gboolean
fr_list_model_multi_drag_data_delete (EggTreeMultiDragSource *drag_source,
GList *path_list)
@@ -92,7 +88,6 @@ fr_list_model_multi_drag_data_delete (EggTreeMultiDragSource *drag_source,
return TRUE;
}
-
static void
fr_list_model_finalize (GObject *object)
{
@@ -100,13 +95,11 @@ fr_list_model_finalize (GObject *object)
G_OBJECT_CLASS (parent_class)->finalize (object);
}
-
static void
fr_list_model_init (FRListModel *model)
{
}
-
static void
fr_list_model_class_init (FRListModelClass *klass)
{
@@ -118,8 +111,6 @@ fr_list_model_class_init (FRListModelClass *klass)
object_class->finalize = fr_list_model_finalize;
}
-
-
static void
fr_list_model_multi_drag_source_init (EggTreeMultiDragSourceIface *iface)
{
@@ -128,7 +119,6 @@ fr_list_model_multi_drag_source_init (EggTreeMultiDragSourceIface *iface)
iface->drag_data_delete = fr_list_model_multi_drag_data_delete;
}
-
GType
fr_list_model_get_type (void)
{
@@ -163,7 +153,6 @@ fr_list_model_get_type (void)
return object_type;
}
-
GtkListStore *
fr_list_model_new (int n_columns, ...)
{