]> git.sesse.net Git - vlc/blobdiff - modules/gui/wxwidgets/input_manager.hpp
HACK for minimalView to go around a Qt bug/feature
[vlc] / modules / gui / wxwidgets / input_manager.hpp
index 0f392da605932f88107e3c8e727c34489410b59d..fdc1f40469c2ade993ca255b0882f6a70097c393 100644 (file)
@@ -5,7 +5,7 @@
  * $Id$
  *
  * Authors: Gildas Bazin <gbazin@videolan.org>
- *          Clément Stenac <zorglub@videolan.org>
+ *          Clément Stenac <zorglub@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
@@ -41,12 +41,12 @@ namespace wxvlc
         virtual ~InputManager();
 
         void Update();
-        vlc_bool_t IsPlaying();
+        bool IsPlaying();
 
     protected:
         void UpdateInput();
         void UpdateNowPlaying();
-        void UpdateButtons( vlc_bool_t );
+        void UpdateButtons( bool );
         void UpdateDiscButtons();
         void UpdateTime();
 
@@ -74,7 +74,7 @@ namespace wxvlc
 
         wxSlider *slider;            ///< Slider for this input
         int i_slider_pos;            ///< Current slider position
-        vlc_bool_t b_slider_free;    ///< Slider status
+        bool b_slider_free;    ///< Slider status
 
         wxBoxSizer *sizer;