Commit 9fccabd9 authored by Geoffroy Couprie's avatar Geoffroy Couprie Committed by Derk-Jan Hartman

wince gui: remove wraptext

(cherry picked from commit 7935d5a8)
Signed-off-by: default avatarDerk-Jan Hartman <hartman@videolan.org>
parent 5ffc74df
......@@ -403,7 +403,7 @@ PrefsTreeCtrl::PrefsTreeCtrl( intf_thread_t *_p_intf,
psz_help = config_CategoryHelpGet( p_item->value.i );
if( psz_help )
{
config_data->psz_help = wraptext( strdup( psz_help ), 72 );
config_data->psz_help = strdup( psz_help );
}
else
{
......@@ -447,7 +447,7 @@ PrefsTreeCtrl::PrefsTreeCtrl( intf_thread_t *_p_intf,
const char *psz_help = config_CategoryHelpGet( p_item->value.i );
if( psz_help )
{
config_data->psz_help = wraptext( strdup( psz_help ), 72 );
config_data->psz_help = strdup( psz_help );
}
else
{
......@@ -462,7 +462,7 @@ PrefsTreeCtrl::PrefsTreeCtrl( intf_thread_t *_p_intf,
psz_help = config_CategoryHelpGet( p_item->value.i );
if( psz_help )
{
config_data->psz_help = wraptext( strdup( psz_help ), 72 );
config_data->psz_help = strdup( psz_help );
}
else
{
......
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