MCPcopy Create free account
hub / github.com/HandBrake/HandBrake / ghb_question_dialog_new

Function ghb_question_dialog_new

gtk/src/callbacks.c:3973–3987  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3971}
3972
3973GtkMessageDialog *
3974ghb_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
3989gboolean
3990ghb_question_dialog_run (GtkWindow *parent, GhbActionStyle accept_style,

Callers 2

Calls 1

question_dialog_vaFunction · 0.85

Tested by

no test coverage detected