[vlc-commits] lib: use app-icon-name for libvlc_set_app_id
Jean-Baptiste Kempf
git at videolan.org
Sat Nov 1 17:02:01 CET 2014
vlc/vlc-2.2 | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sat Nov 1 13:42:08 2014 +0100| [a4384433b10d31c49f63411e7ce905913358fe79] | committer: Rémi Denis-Courmont
lib: use app-icon-name for libvlc_set_app_id
(cherry picked from commit 67e74ed283db585fb8ee7905a877117fbde1932d)
Signed-off-by: Rémi Denis-Courmont <remi at remlab.net>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=a4384433b10d31c49f63411e7ce905913358fe79
---
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