| 3971 | } |
| 3972 | |
| 3973 | GtkMessageDialog * |
| 3974 | ghb_question_dialog_new (GtkWindow *parent, GhbActionStyle accept_style, |
| 3975 | const char *accept_button, const char *cancel_button, |
| 3976 | const char *title, const char *format, ...) |
| 3977 | { |
| 3978 | va_list args; |
| 3979 | GtkMessageDialog *dialog; |
| 3980 | |
| 3981 | va_start(args, format); |
| 3982 | dialog = question_dialog_va(parent, accept_style, accept_button, |
| 3983 | cancel_button, title, format, args); |
| 3984 | va_end(args); |
| 3985 | |
| 3986 | return dialog; |
| 3987 | } |
| 3988 | |
| 3989 | gboolean |
| 3990 | ghb_question_dialog_run (GtkWindow *parent, GhbActionStyle accept_style, |
no test coverage detected