Commit 45cb15ed authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Charset fixes

parent 8595cddc
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
* $Id$ * $Id$
* *
* Authors: Derk-Jan Hartman <thedj@users.sourceforge.net> * Authors: Derk-Jan Hartman <thedj@users.sourceforge.net>
* Felix Paul Khne <fkuehne -at- videolan.org> * Felix Paul Kühne <fkuehne -at- videolan.org>
* *
* This program is free software; you can redistribute it and/or modify * 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 * it under the terms of the GNU General Public License as published by
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
* $Id$ * $Id$
* *
* Authors: Derk-Jan Hartman <thedj@users.sourceforge.net> * Authors: Derk-Jan Hartman <thedj@users.sourceforge.net>
* Felix Paul Khne <fkuehne -at- videolan.org> * Felix Paul Kühne <fkuehne -at- videolan.org>
* *
* This program is free software; you can redistribute it and/or modify * 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 * it under the terms of the GNU General Public License as published by
...@@ -205,7 +205,7 @@ static VLAboutBox *_o_sharedInstance = nil; ...@@ -205,7 +205,7 @@ static VLAboutBox *_o_sharedInstance = nil;
- (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame - (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_fwd_btn setEnabled: [o_help_web_view canGoForward]];
[o_help_bwd_btn setEnabled: [o_help_web_view canGoBack]]; [o_help_bwd_btn setEnabled: [o_help_web_view canGoBack]];
} }
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
* $Id$ * $Id$
* *
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net> * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
* Felix Paul Khne <fkuehne at videolan dot org> * Felix Paul Kühne <fkuehne at videolan dot org>
* *
* This program is free software; you can redistribute it and/or modify * 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 * it under the terms of the GNU General Public License as published by
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net> * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
* Christophe Massiot <massiot@via.ecp.fr> * Christophe Massiot <massiot@via.ecp.fr>
* Derk-Jan Hartman <hartman at videolan dot org> * Derk-Jan Hartman <hartman at videolan dot org>
* Felix KŸhne <fkuehne at videolan dot org> * Felix Kühne <fkuehne at videolan dot org>
* *
* This program is free software; you can redistribute it and/or modify * 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 * it under the terms of the GNU General Public License as published by
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net> * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
* Christophe Massiot <massiot@via.ecp.fr> * Christophe Massiot <massiot@via.ecp.fr>
* Derk-Jan Hartman <hartman at videolan.org> * Derk-Jan Hartman <hartman at videolan.org>
* Felix Khne <fkuehne at videolan dot org> * Felix Kühne <fkuehne at videolan dot org>
* *
* This program is free software; you can redistribute it and/or modify * 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 * it under the terms of the GNU General Public License as published by
......
...@@ -142,7 +142,7 @@ char * QVLCRegistry::ReadRegistryString( const char *path, const char *valueName ...@@ -142,7 +142,7 @@ char * QVLCRegistry::ReadRegistryString( const char *path, const char *valueName
if( valueType == REG_SZ ) if( valueType == REG_SZ )
{ {
// free // free
tempValue = ( char * )malloc( size1+1 ); // +1 fr NullByte`? tempValue = ( char * )malloc( size1+1 ); // +1 für NullByte`?
if( RegQueryValueEx( keyHandle, valueName, NULL, &valueType, (LPBYTE)tempValue, &size1 ) == ERROR_SUCCESS ) if( RegQueryValueEx( keyHandle, valueName, NULL, &valueType, (LPBYTE)tempValue, &size1 ) == ERROR_SUCCESS )
{ {
default_value = tempValue; default_value = tempValue;
...@@ -153,8 +153,8 @@ char * QVLCRegistry::ReadRegistryString( const char *path, const char *valueName ...@@ -153,8 +153,8 @@ char * QVLCRegistry::ReadRegistryString( const char *path, const char *valueName
} }
if( tempValue == NULL ) if( tempValue == NULL )
{ {
// wenn tempValue nicht aus registry gelesen wurde dafr sorgen das ein neuer String mit der Kopie von DefaultValue // 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 Rckgabewertes der Funktion einfacher - immer schn mit free freigeben! // geliefert wird - das macht das Handling des Rückgabewertes der Funktion einfacher - immer schön mit free freigeben!
default_value = strdup( default_value ); default_value = strdup( default_value );
} }
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* Copyright (C) 2003 the VideoLAN team * Copyright (C) 2003 the VideoLAN team
* $Id$ * $Id$
* *
* Authors: Olivier Teulire <ipkiss@via.ecp.fr> * Authors: Olivier Teulière <ipkiss@via.ecp.fr>
* *
* This program is free software; you can redistribute it and/or modify * 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 * it under the terms of the GNU General Public License as published by
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* Copyright (C) 2003 the VideoLAN team * Copyright (C) 2003 the VideoLAN team
* $Id$ * $Id$
* *
* Authors: Olivier Teulière <ipkiss@via.ecp.fr> * Authors: Olivier Teulière <ipkiss@via.ecp.fr>
* *
* This program is free software; you can redistribute it and/or modify * 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 * it under the terms of the GNU General Public License as published by
......
...@@ -574,7 +574,7 @@ StringListConfigControl::StringListConfigControl( vlc_object_t *p_this, ...@@ -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); p_module_config->pf_update_list(p_this, p_item->psz_name, val, val, NULL);
// assume in ay 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 // because lazy programmes will use the same callback for
// this, like the one behind the refresh push button? // this, like the one behind the refresh push button?
p_module_config->b_dirty = false; p_module_config->b_dirty = false;
......
...@@ -72,7 +72,7 @@ typedef struct ...@@ -72,7 +72,7 @@ typedef struct
// maximal Anzahl Kanle... // maximal Anzahl Kanäle...
#define ATMO_NUM_CHANNELS 5 #define ATMO_NUM_CHANNELS 5
// capture width/height // capture width/height
......
...@@ -72,7 +72,7 @@ ATMO_BOOL CAtmoSerialConnection::OpenConnection() { ...@@ -72,7 +72,7 @@ ATMO_BOOL CAtmoSerialConnection::OpenConnection() {
return ATMO_FALSE; return ATMO_FALSE;
} }
/* change serial settings (Speed, stopbits etc.) */ /* change serial settings (Speed, stopbits etc.) */
DCB dcb; // fr comport-parameter DCB dcb; // für comport-parameter
dcb.DCBlength = sizeof(DCB); dcb.DCBlength = sizeof(DCB);
GetCommState (m_hComport, &dcb); // ger current serialport settings GetCommState (m_hComport, &dcb); // ger current serialport settings
dcb.BaudRate = 38400; // set speed dcb.BaudRate = 38400; // set speed
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* Copyright (C) 2000-2006 the VideoLAN team * Copyright (C) 2000-2006 the VideoLAN team
* $Id$ * $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 * 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 * 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, ...@@ -1867,7 +1867,7 @@ static int StateCallback( vlc_object_t *p_this, char const *psz_cmd,
controller */ controller */
p_sys->b_pause_live = true; 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); CheckAndStopFadeThread(p_filter);
// perpare spawn fadeing thread // perpare spawn fadeing thread
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment