]> git.sesse.net Git - vlc/blobdiff - modules/gui/wxwidgets/timer.hpp
Replace vlc_bool_t by bool, VLC_TRUE by true and VLC_FALSE by false.
[vlc] / modules / gui / wxwidgets / timer.hpp
index 19fe7d8e00ea9d2e6c44ff49d15838b6d498c013..bb8ac39283eceb169312d625edc87f78bf18c938 100644 (file)
@@ -2,7 +2,7 @@
  * timer.hpp: Timer headers
  *****************************************************************************
  * Copyright (C) 1999-2005 the VideoLAN team
- * $Id: wxwidgets.h 12502 2005-09-09 19:38:01Z gbazin $
+ * $Id$
  *
  * Authors: Gildas Bazin <gbazin@videolan.org>
  *
  *
  * 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.
  *****************************************************************************/
 
 #include "wxwidgets.hpp"
 
 namespace wxvlc
 {
-    class MainSliderManager;
+    class InputManager;
     class Interface;
 
     class Timer: public wxTimer
@@ -38,16 +38,13 @@ namespace wxvlc
         virtual void Notify();
 
     private:
-        //use wxWindow::IsShown instead
-        //vlc_bool_t b_slider_shown;
-        //vlc_bool_t b_disc_shown;
         intf_thread_t *p_intf;
         Interface *p_main_interface;
-        vlc_bool_t b_init;
+        bool b_init;
         int i_old_playing_status;
         int i_old_rate;
 
-        MainSliderManager *msm;
+        InputManager *msm;
     };
 
 }