From: Gildas Bazin Date: Sun, 16 May 2004 19:33:58 +0000 (+0000) Subject: * modules/gui/wxwindows/preferences_widgets.cpp: increased max int in IntegerConfigCo... X-Git-Tag: 0.7.2~54 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=46fe397806ccf90c8ffbb821e7fb870beb8ddc30;p=vlc * modules/gui/wxwindows/preferences_widgets.cpp: increased max int in IntegerConfigControl. --- diff --git a/include/vlc_help.h b/include/vlc_help.h index 9e36b3ca5c..f9eb350154 100644 --- a/include/vlc_help.h +++ b/include/vlc_help.h @@ -118,7 +118,7 @@ /***************************************************************************** * 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 ""; diff --git a/modules/gui/wxwindows/preferences_widgets.cpp b/modules/gui/wxwindows/preferences_widgets.cpp index 607c4068ec..243cbb62c9 100644 --- a/modules/gui/wxwindows/preferences_widgets.cpp +++ b/modules/gui/wxwindows/preferences_widgets.cpp @@ -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 );