]> git.sesse.net Git - vlc/blobdiff - plugins/qt/intf_qt.cpp
* Fixed the BeOS compile typo.
[vlc] / plugins / qt / intf_qt.cpp
index 856107bad501983b8ed55cc1aecfdd3e55f883ff..3168bc1dc19b3a8cb57c2858305aaead6622f201 100644 (file)
@@ -2,7 +2,7 @@
  * intf_qt.cpp: Qt interface
  *****************************************************************************
  * Copyright (C) 1999, 2000 VideoLAN
- * $Id: intf_qt.cpp,v 1.4 2001/04/16 07:40:11 sam Exp $
+ * $Id: intf_qt.cpp,v 1.7 2001/05/30 17:03:12 sam Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -42,7 +42,6 @@ extern "C"
 #include "threads.h"
 #include "mtime.h"
 #include "tests.h"
-#include "modules.h"
 
 #include "stream_control.h"
 #include "input_ext-intf.h"
@@ -53,6 +52,9 @@ extern "C"
 
 #include "main.h"
 
+#include "modules.h"
+#include "modules_export.h"
+
 } /* extern "C" */
 
 #include <qapplication.h>
@@ -127,7 +129,7 @@ private slots:
     void DateDisplay  ( int );
     void About ( void );
 
-    void Unimplemented( void ) { intf_WarnMsg( 3, "intf warning: "
+    void Unimplemented( void ) { intf_WarnMsg( 1, "intf warning: "
                                  "unimplemented function" ); };
 
 private:
@@ -465,7 +467,7 @@ void IntfWindow::About( void )
 void IntfWindow::Manage( void )
 {
     /* Manage the slider */
-    if( p_intf->p_input != NULL )
+    if( p_intf->p_input != NULL && p_intf->p_input->stream.b_seekable )
     {
         int i_value = p_slider->value();