Commit cd8a7d21 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Never use empty help text for plugin variable - close #859

parent e7bbecab
......@@ -56,7 +56,7 @@ vlc_module_begin();
add_submodule();
set_description( "Dialogs provider" );
set_capability( "dialogs provider", 49 );
add_bool( "qt-always-video", VLC_FALSE, NULL, "", "", VLC_TRUE );
add_bool( "qt-always-video", VLC_FALSE, NULL, "FIXME", "FIXME", VLC_TRUE );
set_callbacks( OpenDialogs, Close );
vlc_module_end();
......
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