From 45cb15ed0f2bef96fc80f2a82b3e50351355e00e Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Sat, 5 Jul 2008 14:54:42 +0300 Subject: [PATCH] Charset fixes --- modules/gui/macosx/about.h | 2 +- modules/gui/macosx/about.m | 4 ++-- modules/gui/macosx/misc.m | 2 +- modules/gui/minimal_macosx/intf.h | 2 +- modules/gui/minimal_macosx/intf.m | 2 +- modules/gui/qt4/util/registry.cpp | 6 +++--- modules/gui/skins2/commands/cmd_dvd.cpp | 2 +- modules/gui/skins2/commands/cmd_dvd.hpp | 2 +- modules/gui/wxwidgets/dialogs/preferences_widgets.cpp | 2 +- modules/video_filter/atmo/AtmoDefs.h | 2 +- modules/video_filter/atmo/AtmoSerialConnection.cpp | 2 +- modules/video_filter/atmo/atmo.cpp | 4 ++-- 12 files changed, 16 insertions(+), 16 deletions(-) diff --git a/modules/gui/macosx/about.h b/modules/gui/macosx/about.h index 165a9e95cf..b04355f7ed 100644 --- a/modules/gui/macosx/about.h +++ b/modules/gui/macosx/about.h @@ -5,7 +5,7 @@ * $Id$ * * Authors: Derk-Jan Hartman - * Felix Paul KŸhne + * Felix Paul Kühne * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/modules/gui/macosx/about.m b/modules/gui/macosx/about.m index 92cc6d851a..9ad77b9ad7 100644 --- a/modules/gui/macosx/about.m +++ b/modules/gui/macosx/about.m @@ -5,7 +5,7 @@ * $Id$ * * Authors: Derk-Jan Hartman - * Felix Paul KŸhne + * Felix Paul Kühne * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -205,7 +205,7 @@ static VLAboutBox *_o_sharedInstance = nil; - (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame { - /* delegate to update button states (we're the frameLoadDelegate for our help's webview)« */ + /* delegate to update button states (we're the frameLoadDelegate for our help's webview)« */ [o_help_fwd_btn setEnabled: [o_help_web_view canGoForward]]; [o_help_bwd_btn setEnabled: [o_help_web_view canGoBack]]; } diff --git a/modules/gui/macosx/misc.m b/modules/gui/macosx/misc.m index 121ec7ba05..a4deccee74 100644 --- a/modules/gui/macosx/misc.m +++ b/modules/gui/macosx/misc.m @@ -5,7 +5,7 @@ * $Id$ * * Authors: Jon Lech Johansen - * Felix Paul KŸhne + * Felix Paul Kühne * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/modules/gui/minimal_macosx/intf.h b/modules/gui/minimal_macosx/intf.h index 067205e93e..8b4ae0d430 100644 --- a/modules/gui/minimal_macosx/intf.h +++ b/modules/gui/minimal_macosx/intf.h @@ -7,7 +7,7 @@ * Authors: Jon Lech Johansen * Christophe Massiot * Derk-Jan Hartman - * Felix KŸhne + * Felix Kühne * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/modules/gui/minimal_macosx/intf.m b/modules/gui/minimal_macosx/intf.m index d42ecbdb22..526bc708ba 100644 --- a/modules/gui/minimal_macosx/intf.m +++ b/modules/gui/minimal_macosx/intf.m @@ -7,7 +7,7 @@ * Authors: Jon Lech Johansen * Christophe Massiot * Derk-Jan Hartman - * Felix KŸhne + * Felix Kühne * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/modules/gui/qt4/util/registry.cpp b/modules/gui/qt4/util/registry.cpp index 106d3e437e..a05f2d3ead 100644 --- a/modules/gui/qt4/util/registry.cpp +++ b/modules/gui/qt4/util/registry.cpp @@ -142,7 +142,7 @@ char * QVLCRegistry::ReadRegistryString( const char *path, const char *valueName if( valueType == REG_SZ ) { // free - tempValue = ( char * )malloc( size1+1 ); // +1 für NullByte`? + tempValue = ( char * )malloc( size1+1 ); // +1 für NullByte`? if( RegQueryValueEx( keyHandle, valueName, NULL, &valueType, (LPBYTE)tempValue, &size1 ) == ERROR_SUCCESS ) { default_value = tempValue; @@ -153,8 +153,8 @@ char * QVLCRegistry::ReadRegistryString( const char *path, const char *valueName } if( tempValue == NULL ) { - // wenn tempValue nicht aus registry gelesen wurde dafür sorgen das ein neuer String mit der Kopie von DefaultValue - // geliefert wird - das macht das Handling des Rückgabewertes der Funktion einfacher - immer schön mit free freigeben! + // wenn tempValue nicht aus registry gelesen wurde dafür sorgen das ein neuer String mit der Kopie von DefaultValue + // geliefert wird - das macht das Handling des Rückgabewertes der Funktion einfacher - immer schön mit free freigeben! default_value = strdup( default_value ); } diff --git a/modules/gui/skins2/commands/cmd_dvd.cpp b/modules/gui/skins2/commands/cmd_dvd.cpp index c4fece2c75..4fe6a95d9c 100644 --- a/modules/gui/skins2/commands/cmd_dvd.cpp +++ b/modules/gui/skins2/commands/cmd_dvd.cpp @@ -4,7 +4,7 @@ * Copyright (C) 2003 the VideoLAN team * $Id$ * - * Authors: Olivier Teulière + * Authors: Olivier Teulière * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/modules/gui/skins2/commands/cmd_dvd.hpp b/modules/gui/skins2/commands/cmd_dvd.hpp index e4b708d40e..ee90598433 100644 --- a/modules/gui/skins2/commands/cmd_dvd.hpp +++ b/modules/gui/skins2/commands/cmd_dvd.hpp @@ -4,7 +4,7 @@ * Copyright (C) 2003 the VideoLAN team * $Id$ * - * Authors: Olivier Teulière + * Authors: Olivier Teulière * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/modules/gui/wxwidgets/dialogs/preferences_widgets.cpp b/modules/gui/wxwidgets/dialogs/preferences_widgets.cpp index 1ff5fa2fc8..92ca94c485 100644 --- a/modules/gui/wxwidgets/dialogs/preferences_widgets.cpp +++ b/modules/gui/wxwidgets/dialogs/preferences_widgets.cpp @@ -574,7 +574,7 @@ StringListConfigControl::StringListConfigControl( vlc_object_t *p_this, p_module_config->pf_update_list(p_this, p_item->psz_name, val, val, NULL); - // assume in a×y case that dirty was set to true + // assume in a×y case that dirty was set to true // because lazy programmes will use the same callback for // this, like the one behind the refresh push button? p_module_config->b_dirty = false; diff --git a/modules/video_filter/atmo/AtmoDefs.h b/modules/video_filter/atmo/AtmoDefs.h index 4a8a892851..7ee1c4ed12 100644 --- a/modules/video_filter/atmo/AtmoDefs.h +++ b/modules/video_filter/atmo/AtmoDefs.h @@ -72,7 +72,7 @@ typedef struct -// maximal Anzahl Kanäle... +// maximal Anzahl Kanäle... #define ATMO_NUM_CHANNELS 5 // capture width/height diff --git a/modules/video_filter/atmo/AtmoSerialConnection.cpp b/modules/video_filter/atmo/AtmoSerialConnection.cpp index 020ca14d43..81b3c83c36 100644 --- a/modules/video_filter/atmo/AtmoSerialConnection.cpp +++ b/modules/video_filter/atmo/AtmoSerialConnection.cpp @@ -72,7 +72,7 @@ ATMO_BOOL CAtmoSerialConnection::OpenConnection() { return ATMO_FALSE; } /* change serial settings (Speed, stopbits etc.) */ - DCB dcb; // für comport-parameter + DCB dcb; // für comport-parameter dcb.DCBlength = sizeof(DCB); GetCommState (m_hComport, &dcb); // ger current serialport settings dcb.BaudRate = 38400; // set speed diff --git a/modules/video_filter/atmo/atmo.cpp b/modules/video_filter/atmo/atmo.cpp index ca4ea9bed1..ded46c21dd 100644 --- a/modules/video_filter/atmo/atmo.cpp +++ b/modules/video_filter/atmo/atmo.cpp @@ -4,7 +4,7 @@ * Copyright (C) 2000-2006 the VideoLAN team * $Id$ * -* Authors: André Weber (WeberAndre@gmx.de) +* Authors: André Weber (WeberAndre@gmx.de) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -1867,7 +1867,7 @@ static int StateCallback( vlc_object_t *p_this, char const *psz_cmd, controller */ p_sys->b_pause_live = true; - // ggf. alten Thread abräumen should not happen.... + // ggf. alten Thread abräumen should not happen.... CheckAndStopFadeThread(p_filter); // perpare spawn fadeing thread -- 2.39.2