summaryrefslogtreecommitdiff
path: root/src/gui/panels/updating.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2020-12-24 16:26:51 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2020-12-24 16:26:51 (GMT)
commit93dfdc30d815629a7e0c9393f0e8f0462844ff56 (patch)
tree8fe59f8c0186871ffd79873ec20905bf39170528 /src/gui/panels/updating.h
parentc388ad8910dbb1a3c478176d8b1ab3142fdbd9d5 (diff)
Ported the panel update mechanisms to the Python API.
Diffstat (limited to 'src/gui/panels/updating.h')
-rw-r--r--src/gui/panels/updating.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/panels/updating.h b/src/gui/panels/updating.h
index 8c44795..2293a02 100644
--- a/src/gui/panels/updating.h
+++ b/src/gui/panels/updating.h
@@ -56,7 +56,7 @@ typedef struct _GUpdatablePanelIface GUpdatablePanelIface;
GType g_updatable_panel_get_type(void) G_GNUC_CONST;
/* Prépare une opération de mise à jour de panneau. */
-const char *g_updatable_panel_setup(const GUpdatablePanel *, unsigned int, size_t *, void **);
+bool g_updatable_panel_setup(const GUpdatablePanel *, unsigned int, size_t *, void **, char **);
/* Obtient le groupe de travail dédié à une mise à jour. */
wgroup_id_t g_updatable_panel_get_group(const GUpdatablePanel *);
@@ -71,7 +71,7 @@ void g_updatable_panel_process(const GUpdatablePanel *, unsigned int, GtkStatusS
void g_updatable_panel_conclude(GUpdatablePanel *, unsigned int, void *);
/* Supprime les données dynamiques utilisées à la mise à jour. */
-void g_updatable_panel_clean_data(GUpdatablePanel *, unsigned int, void *);
+void g_updatable_panel_clean_data(const GUpdatablePanel *, unsigned int, void *);