diff options
Diffstat (limited to 'gtk/inspector/action-editor.h')
-rw-r--r-- | gtk/inspector/action-editor.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gtk/inspector/action-editor.h b/gtk/inspector/action-editor.h index f48640036c..c918a9a55c 100644 --- a/gtk/inspector/action-editor.h +++ b/gtk/inspector/action-editor.h @@ -33,9 +33,11 @@ typedef struct _GtkInspectorActionEditor GtkInspectorActionEditor; G_BEGIN_DECLS GType gtk_inspector_action_editor_get_type (void); -GtkWidget *gtk_inspector_action_editor_new (GObject *owner, - const char *name); -void gtk_inspector_action_editor_update (GtkInspectorActionEditor *r, +GtkWidget *gtk_inspector_action_editor_new (void); +void gtk_inspector_action_editor_set (GtkInspectorActionEditor *self, + GObject *owner, + const char *name); +void gtk_inspector_action_editor_update (GtkInspectorActionEditor *self, gboolean enabled, GVariant *state); |