vlc | branch: master | Rémi Denis-Courmont <[email protected]> | Sun Jan 22 18:58:16 2012 +0100| [6a0e3463ff1e05fc15e0652166b3408a20007764] | committer: Rémi Denis-Courmont
ball: do not enumerate choices in long text > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=6a0e3463ff1e05fc15e0652166b3408a20007764 --- modules/video_filter/ball.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/modules/video_filter/ball.c b/modules/video_filter/ball.c index 6a96bad..a272fe0 100644 --- a/modules/video_filter/ball.c +++ b/modules/video_filter/ball.c @@ -96,7 +96,6 @@ static int getBallColor( vlc_object_t *p_this, char const *psz_newval ); * Module descriptor *****************************************************************************/ #define BALL_COLOR_TEXT N_("Ball color") -#define BALL_COLOR_LONGTEXT N_("Ball color, one of \"red\", \"blue\" and \"green\".") #define EDGE_VISIBLE_TEXT N_("Edge visible") #define EDGE_VISIBLE_LONGTEXT N_("Set edge visibility.") @@ -129,7 +128,7 @@ vlc_module_begin () set_subcategory( SUBCAT_VIDEO_VFILTER ) add_string( FILTER_PREFIX "color", "red", - BALL_COLOR_TEXT, BALL_COLOR_LONGTEXT, false ) + BALL_COLOR_TEXT, BALL_COLOR_TEXT, false ) change_string_list( mode_list, mode_list_text, 0 ) add_integer_with_range( FILTER_PREFIX "speed", 4, 1, 15, _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
