]> git.sesse.net Git - vlc/blobdiff - modules/gui/wxwidgets/preferences_widgets.cpp
all: updated my name and e-mail address
[vlc] / modules / gui / wxwidgets / preferences_widgets.cpp
index 1322ba05bc703711cf2b90f0bba0084d9833b18b..629c51ba17e285e9c960649d0e4888cf85c372f0 100644 (file)
@@ -5,7 +5,7 @@
  * $Id$
  *
  * Authors: Gildas Bazin <gbazin@videolan.org>
- *          Sigmund Augdal <sigmunau@idi.ntnu.no>
+ *          Sigmund Augdal Helberg <dnumgis@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
@@ -35,7 +35,7 @@
 
 #include <vlc_config_cat.h>
 
-#include "wxwindows.h"
+#include "wxwidgets.h"
 #include "preferences_widgets.h"
 
 #include <wx/statline.h>
@@ -440,7 +440,7 @@ ModuleListCatConfigControl::ModuleListCatConfigControl( vlc_object_t *p_this,
     text->SetToolTip( wxU(p_item->psz_longtext) );
     sizer->Add(text, 0, wxEXPAND|wxALL, 5 );
 
-    sizer->Add (new wxStaticText( this, -1, wxU( vlc_wraptext( _("Select modules that you want. To get more advanced control, you can also modify the resulting chain by yourself") , 72, ISUTF8 ) ) ) );
+    sizer->Add (new wxStaticText( this, -1, wxU( vlc_wraptext( _("Select modules that you want. To get more advanced control, you can also modify the resulting chain by yourself") , 72, 1 ) ) ) );
 
     sizer->Layout();
     this->SetSizerAndFit( sizer );
@@ -460,13 +460,13 @@ void  ModuleListCatConfigControl::OnUpdate( wxCommandEvent &event )
 {
     bool b_waschecked = false;
     wxString newtext =  text->GetValue();
-    
+
     for( unsigned int i = 0 ; i< pp_checkboxes.size() ; i++ )
     {
         b_waschecked = newtext.Find( wxU(pp_checkboxes[i]->psz_module)) != -1 ;
         /* For some reasons, ^^ doesn't compile :( */
         if( (pp_checkboxes[i]->checkbox->IsChecked() && ! b_waschecked )||
-                       (! pp_checkboxes[i]->checkbox->IsChecked() && b_waschecked) )
+            (! pp_checkboxes[i]->checkbox->IsChecked() && b_waschecked) )
         {
             if( b_waschecked )
             {
@@ -477,7 +477,7 @@ void  ModuleListCatConfigControl::OnUpdate( wxCommandEvent &event )
                 {
                     if( ! newtext.Replace(wxString(wxU(pp_checkboxes[i]->psz_module))
                                            + wxT(":"),wxT("")))
-                   { 
+            {
                         newtext.Replace(wxU(pp_checkboxes[i]->psz_module),wxU(""));
                     }
                 }