From 7935d5a81c80547b21fa02c9609d6cedac7c3a36 Mon Sep 17 00:00:00 2001 From: Geoffroy Couprie Date: Sat, 9 May 2009 15:00:28 +0200 Subject: [PATCH] wince gui: remove wraptext --- modules/gui/wince/preferences.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/gui/wince/preferences.cpp b/modules/gui/wince/preferences.cpp index 554a37ac5c..012dab91d4 100644 --- a/modules/gui/wince/preferences.cpp +++ b/modules/gui/wince/preferences.cpp @@ -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 { -- 2.39.2