]> git.sesse.net Git - vlc/commitdiff
Charset fixes
authorRémi Denis-Courmont <rdenis@simphalempin.com>
Sat, 5 Jul 2008 11:54:42 +0000 (14:54 +0300)
committerRémi Denis-Courmont <rdenis@simphalempin.com>
Sat, 5 Jul 2008 11:55:20 +0000 (14:55 +0300)
12 files changed:
modules/gui/macosx/about.h
modules/gui/macosx/about.m
modules/gui/macosx/misc.m
modules/gui/minimal_macosx/intf.h
modules/gui/minimal_macosx/intf.m
modules/gui/qt4/util/registry.cpp
modules/gui/skins2/commands/cmd_dvd.cpp
modules/gui/skins2/commands/cmd_dvd.hpp
modules/gui/wxwidgets/dialogs/preferences_widgets.cpp
modules/video_filter/atmo/AtmoDefs.h
modules/video_filter/atmo/AtmoSerialConnection.cpp
modules/video_filter/atmo/atmo.cpp

index 165a9e95cfdb680a94ac9b45df7597b7488dc9d8..b04355f7eda1742f9053111e6708c9a12e0bfc63 100644 (file)
@@ -5,7 +5,7 @@
  * $Id$
  *
  * Authors: Derk-Jan Hartman <thedj@users.sourceforge.net>
- *          Felix Paul K\9fhne <fkuehne -at- videolan.org>
+ *          Felix Paul Kühne <fkuehne -at- videolan.org>
  *
  * 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
index 92cc6d851a0020b4921f5db17322826e71f4502d..9ad77b9ad77fa0bc757d5897dd103669ef3841d6 100644 (file)
@@ -5,7 +5,7 @@
  * $Id$
  *
  * Authors: Derk-Jan Hartman <thedj@users.sourceforge.net>
- *          Felix Paul K\9fhne <fkuehne -at- videolan.org>
+ *          Felix Paul Kühne <fkuehne -at- videolan.org>
  *
  * 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]];
 }
index 121ec7ba0585cf8ef3b5af0263edef64d454966e..a4deccee74cebd3275c120d88890ece52ddb6af2 100644 (file)
@@ -5,7 +5,7 @@
  * $Id$
  *
  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
- *          Felix Paul K\9fhne <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
  * it under the terms of the GNU General Public License as published by
index 067205e93e7dd4dae5c23eaf53bcf139238567b3..8b4ae0d4307c44d6f610d45f480a757b416ada78 100644 (file)
@@ -7,7 +7,7 @@
  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
  *          Christophe Massiot <massiot@via.ecp.fr>
  *          Derk-Jan Hartman <hartman at videolan dot org>
- *          Felix K\9fhne <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
  * it under the terms of the GNU General Public License as published by
index d42ecbdb2296802c485fc20a397a93e6a95ca20f..526bc708baaafa48b13e8ccdfb48037752814c36 100644 (file)
@@ -7,7 +7,7 @@
  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
  *          Christophe Massiot <massiot@via.ecp.fr>
  *          Derk-Jan Hartman <hartman at videolan.org>
- *          Felix K\9fhne <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
  * it under the terms of the GNU General Public License as published by
index 106d3e437e6b5d42f448acad34ef32d4201ae36d..a05f2d3eadf7258a010c3a6928254d54628c256f 100644 (file)
@@ -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 );
     }
 
index c4fece2c75fa7a021df3ec0381276d74a453f3ab..4fe6a95d9c0cc96c97834d5d89042f67101ed0ed 100644 (file)
@@ -4,7 +4,7 @@
  * Copyright (C) 2003 the VideoLAN team
  * $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
  * it under the terms of the GNU General Public License as published by
index e4b708d40edacb01d199d2e7353c319ed6fbe367..ee905984339bb5c2902d98775726fa170cfaf9fe 100644 (file)
@@ -4,7 +4,7 @@
  * Copyright (C) 2003 the VideoLAN team
  * $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
  * it under the terms of the GNU General Public License as published by
index 1ff5fa2fc8da431c842c8f097b4b0fd7f9601196..92ca94c4854c64360db2cb4a03034d5df847ba00 100644 (file)
@@ -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;
index 4a8a8928515edee6288a430096390a0e3dae8b39..7ee1c4ed1237e7468ba1fe53e37a2e7b579cbefa 100644 (file)
@@ -72,7 +72,7 @@ typedef struct
 
 
 
-// maximal Anzahl Kanäle...
+// maximal Anzahl Kanäle...
 #define ATMO_NUM_CHANNELS   5
 
 // capture width/height
index 020ca14d43cd84e6b9c268a786a9244e59eb9993..81b3c83c36e87532589ed080499a2b0381882f6b 100644 (file)
@@ -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
index ca4ea9bed145028f703883b710cc1f3d32cffa92..ded46c21ddae31af6e9d26b1cb7212f575c45aa9 100644 (file)
@@ -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