[vlc-devel] commit: wince gui: remove wraptext (Geoffroy Couprie )

git version control git at videolan.org
Sat May 9 15:00:45 CEST 2009


vlc | branch: master | Geoffroy Couprie <geo.couprie at gmail.com> | Sat May  9 15:00:28 2009 +0200| [7935d5a81c80547b21fa02c9609d6cedac7c3a36] | committer: Geoffroy Couprie 

wince gui: remove wraptext

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=7935d5a81c80547b21fa02c9609d6cedac7c3a36
---

 modules/gui/wince/preferences.cpp |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/modules/gui/wince/preferences.cpp b/modules/gui/wince/preferences.cpp
index 554a37a..012dab9 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
                     {




More information about the vlc-devel mailing list