Commit 5a9609c7 authored by Thomas Guillem's avatar Thomas Guillem

dialog: fix define

parent 78466929
......@@ -224,8 +224,8 @@ VLC_API int
vlc_dialog_update_progress_text(vlc_object_t *p_obj, vlc_dialog_id *p_id,
float f_position, const char *psz_fmt, ...)
VLC_FORMAT(4, 5);
#define vlc_dialog_display_progress_text(a, b, c, d, ...) \
vlc_dialog_display_progress_text(VLC_OBJECT(a), b, c, d, ##__VA_ARGS__)
#define vlc_dialog_update_progress_text(a, b, c, d, ...) \
vlc_dialog_update_progress_text(VLC_OBJECT(a), b, c, d, ##__VA_ARGS__)
/**
* Update the position and the message of the progress dialog
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment