[vlc-commits] Remove unused VLC_VAR_HOTKEY
Rémi Denis-Courmont
git at videolan.org
Fri May 22 21:15:53 CEST 2015
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Fri May 22 20:55:27 2015 +0300| [d073cd5fc841533cef819a6c3c96c4478f6cefc2] | committer: Rémi Denis-Courmont
Remove unused VLC_VAR_HOTKEY
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d073cd5fc841533cef819a6c3c96c4478f6cefc2
---
include/vlc_variables.h | 1 -
src/misc/variables.c | 1 -
2 files changed, 2 deletions(-)
diff --git a/include/vlc_variables.h b/include/vlc_variables.h
index 533b97e..b8281cf 100644
--- a/include/vlc_variables.h
+++ b/include/vlc_variables.h
@@ -53,7 +53,6 @@
#define VLC_VAR_VOID 0x0010
#define VLC_VAR_BOOL 0x0020
#define VLC_VAR_INTEGER 0x0030
-#define VLC_VAR_HOTKEY 0x0031
#define VLC_VAR_STRING 0x0040
#define VLC_VAR_VARIABLE 0x0044
#define VLC_VAR_FLOAT 0x0050
diff --git a/src/misc/variables.c b/src/misc/variables.c
index 86e570e..608352d 100644
--- a/src/misc/variables.c
+++ b/src/misc/variables.c
@@ -1489,7 +1489,6 @@ static void DumpVariable(const void *data, const VISIT which, const int depth)
case VLC_VAR_VOID: typename = "void"; break;
case VLC_VAR_BOOL: typename = "bool"; break;
case VLC_VAR_INTEGER: typename = "integer"; break;
- case VLC_VAR_HOTKEY: typename = "hotkey"; break;
case VLC_VAR_STRING: typename = "string"; break;
case VLC_VAR_VARIABLE: typename = "variable"; break;
case VLC_VAR_FLOAT: typename = "float"; break;
More information about the vlc-commits
mailing list