summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrbuj <[email protected]>2021-10-27 18:20:40 +0200
committerraveit65 <[email protected]>2021-12-11 16:16:17 +0100
commit9b8b3fb98ee475fc6db97e28c70dbd532b8de8a8 (patch)
tree000bd644bf70d9c810dc61d7d5bfcef1769ea218
parent429418d1bcf90d73b087e2eecc27a9ed7128a572 (diff)
downloadpython-caja-9b8b3fb98ee475fc6db97e28c70dbd532b8de8a8.tar.bz2
python-caja-9b8b3fb98ee475fc6db97e28c70dbd532b8de8a8.tar.xz
Use a blank line at most
-rw-r--r--src/caja-python-object.c4
-rw-r--r--src/caja-python.c2
-rw-r--r--src/caja-python.h1
3 files changed, 0 insertions, 7 deletions
diff --git a/src/caja-python-object.c b/src/caja-python-object.c
index e60bfe3..a0275ae 100644
--- a/src/caja-python-object.c
+++ b/src/caja-python-object.c
@@ -110,7 +110,6 @@ static GObjectClass *parent_class;
} \
}
-
static void
free_pygobject_data(gpointer data, gpointer user_data)
{
@@ -171,7 +170,6 @@ caja_python_object_get_property_pages (CajaPropertyPageProvider *provider,
}
#undef METHOD_NAME
-
static void
caja_python_object_property_page_provider_iface_init (CajaPropertyPageProviderIface *iface)
{
@@ -363,7 +361,6 @@ caja_python_object_column_provider_iface_init (CajaColumnProviderIface *iface)
iface->get_columns = caja_python_object_get_columns;
}
-
#define METHOD_NAME "cancel_update"
static void
caja_python_object_cancel_update (CajaInfoProvider *provider,
@@ -419,7 +416,6 @@ caja_python_object_update_file_info (CajaInfoProvider *provider,
py_handle = caja_python_boxed_new (_PyCajaOperationHandle_Type,
h, FALSE);
-
py_ret = PyObject_CallMethod(object->instance,
METHOD_PREFIX "update_file_info_full", "(NNNN)",
pygobject_new((GObject*)provider),
diff --git a/src/caja-python.c b/src/caja-python.c
index e516ff8..9f213dd 100644
--- a/src/caja-python.c
+++ b/src/caja-python.c
@@ -43,7 +43,6 @@ static gboolean caja_python_init_python(void);
static GArray *all_types = NULL;
static GList *all_pyfiles = NULL;
-
/* Caja.OperationHandle value access. */
static PyObject *
caja_operationhandle_get_handle(PyGBoxed *self, void *closure)
@@ -74,7 +73,6 @@ static PyGetSetDef caja_operationhandle_handle = {
NULL
};
-
static inline gboolean
np_init_pygobject(void)
{
diff --git a/src/caja-python.h b/src/caja-python.h
index 0f0cd06..7e4a5ad 100644
--- a/src/caja-python.h
+++ b/src/caja-python.h
@@ -45,7 +45,6 @@ extern CajaPythonDebug caja_python_debug;
#define debug_enter_args(x, y) { if (caja_python_debug & CAJA_PYTHON_DEBUG_MISC) \
g_printf("%s: entered " x "\n", __FUNCTION__, y); }
-
CAJA_PYTHON_VAR_DECL PyTypeObject *_PyGtkWidget_Type;
#define PyGtkWidget_Type (*_PyGtkWidget_Type)