diff options
-rw-r--r-- | src/caja-python-object.c | 4 | ||||
-rw-r--r-- | src/caja-python.c | 2 | ||||
-rw-r--r-- | src/caja-python.h | 1 |
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) |