]> git.sesse.net Git - vlc/commitdiff
beos/Video*: fixed cursor hiding (int32_t != int32 bla bla bla)
authorEric Petit <titer@videolan.org>
Mon, 22 Dec 2003 11:14:25 +0000 (11:14 +0000)
committerEric Petit <titer@videolan.org>
Mon, 22 Dec 2003 11:14:25 +0000 (11:14 +0000)
modules/gui/beos/VideoOutput.cpp
modules/gui/beos/VideoWindow.h

index 6ac0367f6bc0f7a8cb4d06b89aae7b683b028604..23fd0c4fd9b199e4774b64e564a9934d19c6027e 100644 (file)
@@ -2,7 +2,7 @@
  * vout_beos.cpp: beos video output display method
  *****************************************************************************
  * Copyright (C) 2000, 2001 VideoLAN
- * $Id: VideoOutput.cpp,v 1.27 2003/12/22 11:08:00 titer Exp $
+ * $Id: VideoOutput.cpp,v 1.28 2003/12/22 11:14:25 titer Exp $
  *
  * Authors: Jean-Marc Dressler <polux@via.ecp.fr>
  *          Samuel Hocevar <sam@zoy.org>
@@ -1309,7 +1309,7 @@ VLCView::MouseUp( BPoint where )
  * VLCVIew::MouseMoved
  *****************************************************************************/
 void
-VLCView::MouseMoved(BPoint point, uint32_t transit, const BMessage* dragMessage)
+VLCView::MouseMoved(BPoint point, uint32 transit, const BMessage* dragMessage)
 {
        fLastMouseMovedTime = system_time();
        fCursorHidden = false;
index 8809adba9082ad9a817013a2cf4026de6132d281..6453d4fd72efc7facb20d5686f1aee1fffd601a4 100644 (file)
@@ -2,7 +2,7 @@
  * VideoWindow.h: BeOS video window class prototype
  *****************************************************************************
  * Copyright (C) 1999, 2000, 2001 VideoLAN
- * $Id: VideoWindow.h,v 1.9 2003/11/08 18:23:40 titer Exp $
+ * $Id: VideoWindow.h,v 1.10 2003/12/22 11:14:25 titer Exp $
  *
  * Authors: Jean-Marc Dressler <polux@via.ecp.fr>
  *          Tony Castley <tcastley@mail.powerup.com.au>
@@ -113,7 +113,7 @@ class VLCView : public BView
        virtual void                    AttachedToWindow();
        virtual void                    MouseDown(BPoint where);
        virtual void                    MouseUp(BPoint where);
-       virtual void                    MouseMoved(BPoint where, uint32_t transit,
+       virtual void                    MouseMoved(BPoint where, uint32 transit,
                                                                           const BMessage* dragMessage);
        virtual void                    Pulse();
        virtual void                    Draw(BRect updateRect);