Commit 8c7a6ccd authored by Rémi Duraffort's avatar Rémi Duraffort

Fix compilation.

parent 396da76d
...@@ -108,7 +108,6 @@ vlc_module_begin () ...@@ -108,7 +108,6 @@ vlc_module_begin ()
false ) false )
add_bool( MODULE_STRING "-track-length", true, add_bool( MODULE_STRING "-track-length", true,
NULL,
N_("Use track length as maximum unit in seek?"), N_("Use track length as maximum unit in seek?"),
N_("If set, the length of the seek bar is the track rather than " N_("If set, the length of the seek bar is the track rather than "
"the length of an entry."), "the length of an entry."),
...@@ -120,11 +119,11 @@ vlc_module_begin () ...@@ -120,11 +119,11 @@ vlc_module_begin ()
"Media Info. Shows for example playback control navigation."), "Media Info. Shows for example playback control navigation."),
false ) false )
add_string( MODULE_STRING "-author-format", "%v - %F disc %c of %C", NULL, add_string( MODULE_STRING "-author-format", "%v - %F disc %c of %C",
N_("Format to use in the playlist's \"author\" field."), N_("Format to use in the playlist's \"author\" field."),
VCD_TITLE_FMT_LONGTEXT, true ) VCD_TITLE_FMT_LONGTEXT, true )
add_string( MODULE_STRING "-title-format", "%I %N %L%S - %M %A %v - disc %c of %C %F", NULL, add_string( MODULE_STRING "-title-format", "%I %N %L%S - %M %A %v - disc %c of %C %F",
N_("Format to use in the playlist's \"title\" field."), N_("Format to use in the playlist's \"title\" field."),
VCD_TITLE_FMT_LONGTEXT, false ) VCD_TITLE_FMT_LONGTEXT, false )
......
...@@ -91,9 +91,9 @@ vlc_module_begin () ...@@ -91,9 +91,9 @@ vlc_module_begin ()
add_integer( "xosd-text-offset", 30, TXT_OFS_TEXT, TXT_OFS_LONGTEXT, true ) add_integer( "xosd-text-offset", 30, TXT_OFS_TEXT, TXT_OFS_LONGTEXT, true )
add_integer( "xosd-shadow-offset", 2, add_integer( "xosd-shadow-offset", 2,
SHD_OFS_TEXT, SHD_OFS_LONGTEXT, true ) SHD_OFS_TEXT, SHD_OFS_LONGTEXT, true )
add_string( "xosd-font", "-adobe-helvetica-bold-r-normal-*-*-160-*-*-p-*-iso8859-1", NULL, add_string( "xosd-font", "-adobe-helvetica-bold-r-normal-*-*-160-*-*-p-*-iso8859-1",
FONT_TEXT, FONT_LONGTEXT, true ) FONT_TEXT, FONT_LONGTEXT, true )
add_string( "xosd-colour", "LawnGreen", NULL, add_string( "xosd-colour", "LawnGreen",
COLOUR_TEXT, COLOUR_LONGTEXT, true ) COLOUR_TEXT, COLOUR_LONGTEXT, true )
set_capability( "interface", 10 ) set_capability( "interface", 10 )
set_callbacks( Open, Close ) set_callbacks( Open, Close )
......
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