]> git.sesse.net Git - vlc/blobdiff - modules/gui/wince/preferences_widgets.h
macosx: Use input_ItemHasErrorWhenReading to display a small icon if there was an...
[vlc] / modules / gui / wince / preferences_widgets.h
index 42096b97421fb793b27315614f66404e24c1c159..37cd1c2d9342a9e0e544b04ffa4b707c49c551bf 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * preferences_widgets.h : WinCE gui plugin for VLC
  *****************************************************************************
- * Copyright (C) 2000-2003 VideoLAN (Centrale Réseaux) and its contributors
+ * Copyright (C) 2000-2003 the VideoLAN team
  * $Id$
  *
  * Authors: Marodon Cedric <cedric_marodon@yahoo.fr>
@@ -19,7 +19,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
 class ConfigControl
@@ -30,12 +30,13 @@ public:
 
     virtual int GetIntValue() {return 0;}
     virtual float GetFloatValue() {return 0;}
-    virtual char *GetPszValue() {return GetName();} // faux retourne nom associé à parent
-        // mettre dans constructeur et dans private le nom du panel associé à HWND
+    virtual char *GetPszValue() {return GetName();}
+    // FIXME returns name corresponding to parent
+    // put the panel name corresponding to HWND into the constructor and make it private
 
     char *GetName();
     int GetType();
-    vlc_bool_t IsAdvanced();
+    bool IsAdvanced();
 
     void SetUpdateCallback( void (*)( void * ), void * );
 
@@ -54,7 +55,7 @@ private:
 
     char *name;
     int i_type;
-    vlc_bool_t b_advanced;
+    bool b_advanced;
 };
 
 ConfigControl *CreateConfigControl( vlc_object_t *,