X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fgui%2Fwince%2Fpreferences_widgets.cpp;h=648dfd6857bbc7b9cef91faf8bbd63a19d484654;hb=6ee1e193fd896ab9a4729fde14f009d9ce629815;hp=ae35c76b4e028b53ef1840194abed5d5373aace5;hpb=85b29bdc288a1573d43bd524908be5748a9b3640;p=vlc diff --git a/modules/gui/wince/preferences_widgets.cpp b/modules/gui/wince/preferences_widgets.cpp index ae35c76b4e..648dfd6857 100644 --- a/modules/gui/wince/preferences_widgets.cpp +++ b/modules/gui/wince/preferences_widgets.cpp @@ -1,7 +1,7 @@ /***************************************************************************** * preferences_widgets.cpp : WinCE gui plugin for VLC ***************************************************************************** - * Copyright (C) 2000-2004 VideoLAN (Centrale Réseaux) and its contributors + * Copyright (C) 2000-2004 the VideoLAN team * $Id$ * * Authors: Marodon Cedric @@ -19,17 +19,14 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ /***************************************************************************** * Preamble *****************************************************************************/ -#include /* malloc(), free() */ -#include /* strerror() */ -#include #include -#include +#include #include "wince.h" @@ -692,7 +689,7 @@ int IntegerListConfigControl::GetIntValue() * RangedIntConfigControl implementation *****************************************************************************/ RangedIntConfigControl::RangedIntConfigControl( vlc_object_t *p_this, - module_config_t *p_item, + module_config_t *p_item, HWND parent, HINSTANCE hInst, int * py_pos ) : ConfigControl( p_this, p_item, parent, hInst ) @@ -753,7 +750,7 @@ float FloatConfigControl::GetFloatValue() { float f_value; - int i_size = Edit_GetTextLength( textctrl ); + int i_size = Edit_GetTextLength( textctrl ); TCHAR *psz_string = (TCHAR *)malloc( (i_size + 1) * sizeof(TCHAR) ); Edit_GetText( textctrl, psz_string, i_size + 1 );