]> git.sesse.net Git - vlc/commitdiff
* modules/gui/wxwindows/preferences_widgets.cpp: increased max int in IntegerConfigCo...
authorGildas Bazin <gbazin@videolan.org>
Sun, 16 May 2004 19:33:58 +0000 (19:33 +0000)
committerGildas Bazin <gbazin@videolan.org>
Sun, 16 May 2004 19:33:58 +0000 (19:33 +0000)
include/vlc_help.h
modules/gui/wxwindows/preferences_widgets.cpp

index 9e36b3ca5c13e65ea708b4f36edc3f6d4afd02a1..f9eb3501545c63bddf9efdbc86a006da5ed4d15e 100644 (file)
 /*****************************************************************************
  * GetCapabilityHelp: Display the help for one capability.
  *****************************************************************************/
-static char * GetCapabilityHelp( char *psz_capability, int i_type)
+static inline char * GetCapabilityHelp( char *psz_capability, int i_type)
 {
     if( psz_capability == NULL) return "";
 
index 607c4068ecedc2501e1de475e2544b21595075f8..243cbb62c9967fa396e5be7714b95006c52e438a 100644 (file)
@@ -527,7 +527,7 @@ IntegerConfigControl::IntegerConfigControl( vlc_object_t *p_this,
                                             p_item->i_value),
                            wxDefaultPosition, wxDefaultSize,
                            wxSP_ARROW_KEYS,
-                           -10000000, 10000000, p_item->i_value);
+                           -100000000, 100000000, p_item->i_value);
     spin->SetToolTip( wxU(p_item->psz_longtext) );
     sizer->Add( label, 1, wxALIGN_CENTER_VERTICAL | wxALL, 5 );
     sizer->Add( spin, 0, wxALIGN_CENTER_VERTICAL | wxALL, 5 );