Commit 82a40b02 authored by Christophe Mutricy's avatar Christophe Mutricy

Mark 2 options as volatile and avoid some "" in translatable strings

parent e3774fe2
......@@ -121,8 +121,10 @@ vlc_module_begin ()
set_description( N_("Lua SD Module") )
add_shortcut( "luasd" )
set_capability( "services_discovery", 0 )
add_string( "lua-sd", "", NULL, "", "", false )
add_string( "lua-longname", "", NULL, "", "", false )
add_string( "lua-sd", "", NULL, NULL, NULL, false )
change_volatile()
add_string( "lua-longname", "", NULL, NULL, NULL, false )
change_volatile()
set_callbacks( Open_LuaSD, Close_LuaSD )
add_submodule ()
......
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