[vlc-commits] lib: use app-icon-name for libvlc_set_app_id
Jean-Baptiste Kempf
git at videolan.org
Sat Nov 1 13:45:44 CET 2014
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sat Nov 1 13:42:08 2014 +0100| [67e74ed283db585fb8ee7905a877117fbde1932d] | committer: Jean-Baptiste Kempf
lib: use app-icon-name for libvlc_set_app_id
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=67e74ed283db585fb8ee7905a877117fbde1932d
---
lib/core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/core.c b/lib/core.c
index cc74071..fa5c4de 100644
--- a/lib/core.c
+++ b/lib/core.c
@@ -154,7 +154,7 @@ void libvlc_set_app_id(libvlc_instance_t *p_i, const char *id,
var_SetString(p_libvlc, "app-id", id ? id : "");
var_SetString(p_libvlc, "app-version", version ? version : "");
- var_SetString(p_libvlc, "app-version", icon ? icon : "");
+ var_SetString(p_libvlc, "app-icon-name", icon ? icon : "");
}
const char * libvlc_get_version(void)
More information about the vlc-commits
mailing list