[vlc-commits] dialog: fix define

Thomas Guillem git at videolan.org
Thu Feb 4 15:53:13 CET 2016


vlc | branch: master | Thomas Guillem <thomas at gllm.fr> | Thu Feb  4 15:51:15 2016 +0100| [5a9609c7c0625c2a86076b6c84b3b56fcffd6bf2] | committer: Thomas Guillem

dialog: fix define

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5a9609c7c0625c2a86076b6c84b3b56fcffd6bf2
---

 include/vlc_dialog.h |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/vlc_dialog.h b/include/vlc_dialog.h
index f0904e7..786da22 100644
--- a/include/vlc_dialog.h
+++ b/include/vlc_dialog.h
@@ -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



More information about the vlc-commits mailing list