diff options
Diffstat (limited to 'lib/ephy-dialog.h')
-rw-r--r-- | lib/ephy-dialog.h | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/lib/ephy-dialog.h b/lib/ephy-dialog.h index a1ed97f1f..40c88f57c 100644 --- a/lib/ephy-dialog.h +++ b/lib/ephy-dialog.h @@ -57,11 +57,17 @@ struct EphyDialogClass { GObjectClass parent_class; - void (* construct) (EphyDialog *dialog, - const EphyDialogProperty *properties, - const char *file, - const char *name); - void (* show) (EphyDialog *dialog); + /* Signals */ + + void (* changed) (EphyDialog *dialog, + const GValue *value); + + /* Methods */ + void (* construct) (EphyDialog *dialog, + const EphyDialogProperty *properties, + const char *file, + const char *name); + void (* show) (EphyDialog *dialog); }; struct EphyDialog @@ -93,8 +99,8 @@ void ephy_dialog_set_data_column (EphyDialog *dialog, int col); void ephy_dialog_set_size_group (EphyDialog *dialog, - const char **controls_id, - guint n_controls); + const char *first_id, + ...); int ephy_dialog_run (EphyDialog *dialog); |