[vlc-devel] commit: Charset fixes ( Rémi Denis-Courmont )

git version control git at videolan.org
Sat Jul 5 13:53:07 CEST 2008


vlc | branch: master | Rémi Denis-Courmont <rdenis at simphalempin.com> | Sat Jul  5 14:54:42 2008 +0300| [45cb15ed0f2bef96fc80f2a82b3e50351355e00e]

Charset fixes

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=45cb15ed0f2bef96fc80f2a82b3e50351355e00e
---

 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 +-
 .../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 165a9e9..b04355f 100644
--- a/modules/gui/macosx/about.h
+++ b/modules/gui/macosx/about.h
@@ -5,7 +5,7 @@
  * $Id$
  *
  * Authors: Derk-Jan Hartman <thedj at users.sourceforge.net>
- *          Felix Paul KŸhne <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
diff --git a/modules/gui/macosx/about.m b/modules/gui/macosx/about.m
index 92cc6d8..9ad77b9 100644
--- a/modules/gui/macosx/about.m
+++ b/modules/gui/macosx/about.m
@@ -5,7 +5,7 @@
  * $Id$
  *
  * Authors: Derk-Jan Hartman <thedj at users.sourceforge.net>
- *          Felix Paul KŸhne <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]];
 }
diff --git a/modules/gui/macosx/misc.m b/modules/gui/macosx/misc.m
index 121ec7b..a4decce 100644
--- a/modules/gui/macosx/misc.m
+++ b/modules/gui/macosx/misc.m
@@ -5,7 +5,7 @@
  * $Id$
  *
  * Authors: Jon Lech Johansen <jon-vl at nanocrew.net>
- *          Felix Paul KŸhne <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
diff --git a/modules/gui/minimal_macosx/intf.h b/modules/gui/minimal_macosx/intf.h
index 067205e..8b4ae0d 100644
--- a/modules/gui/minimal_macosx/intf.h
+++ b/modules/gui/minimal_macosx/intf.h
@@ -7,7 +7,7 @@
  * Authors: Jon Lech Johansen <jon-vl at nanocrew.net>
  *          Christophe Massiot <massiot at via.ecp.fr>
  *          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
  * 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 d42ecbd..526bc70 100644
--- a/modules/gui/minimal_macosx/intf.m
+++ b/modules/gui/minimal_macosx/intf.m
@@ -7,7 +7,7 @@
  * Authors: Jon Lech Johansen <jon-vl at nanocrew.net>
  *          Christophe Massiot <massiot at via.ecp.fr>
  *          Derk-Jan Hartman <hartman at videolan.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
  * 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 106d3e4..a05f2d3 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 c4fece2..4fe6a95 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 <ipkiss at via.ecp.fr>
+ * Authors: Olivier Teulière <ipkiss at 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
diff --git a/modules/gui/skins2/commands/cmd_dvd.hpp b/modules/gui/skins2/commands/cmd_dvd.hpp
index e4b708d..ee90598 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 <ipkiss at via.ecp.fr>
+ * Authors: Olivier Teulière <ipkiss at 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
diff --git a/modules/gui/wxwidgets/dialogs/preferences_widgets.cpp b/modules/gui/wxwidgets/dialogs/preferences_widgets.cpp
index 1ff5fa2..92ca94c 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 4a8a892..7ee1c4e 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 020ca14..81b3c83 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 ca4ea9b..ded46c2 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 at gmx.de)
+* Authors: André Weber (WeberAndre at 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




More information about the vlc-devel mailing list