]> git.sesse.net Git - vlc/commitdiff
call UpdateRate when rate changes, add myself to authors
authorIlkka Ollakka <ileoo@videolan.org>
Tue, 22 Jan 2008 05:26:59 +0000 (05:26 +0000)
committerIlkka Ollakka <ileoo@videolan.org>
Tue, 22 Jan 2008 05:26:59 +0000 (05:26 +0000)
modules/gui/qt4/components/playlist/playlist.cpp
modules/gui/qt4/components/playlist/playlist.hpp
modules/gui/qt4/input_manager.cpp

index b76614f7ab83d997dd0f6d670de50eafb3d43482..27aa3ec2508eaf4a6b059fe5af467568e774282a 100644 (file)
@@ -108,13 +108,11 @@ void PlaylistWidget::setArt( QString url )
     if( url.isNull() )
     {
         art->setPixmap( QPixmap( ":/noart.png" ) );
-        emit artSet( url );
     }
     else if( prevArt != url )
     {
         art->setPixmap( QPixmap( url ) );
         prevArt = url;
-        emit artSet( url );
     }
 }
 
index 022547d9dacc13af899d72b43d291f87a9362762..782ecfd16c0803765747d8e042865e1b0dbfb751 100644 (file)
@@ -59,7 +59,6 @@ private slots:
     void setArt( QString );
 signals:
     void rootChanged( int );
-    void artSet( QString );
 };
 
 class ArtLabel : public QLabel
index 4827a925ee34d3da907de7e8ec5b59e36910d9df..eeec9f6facacf035f0f85a01a8449643f553157d 100644 (file)
@@ -5,6 +5,7 @@
  * $Id$
  *
  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
+ *          Ilkka Ollakka  <ileoo@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
@@ -226,7 +227,7 @@ void InputManager::customEvent( QEvent *event )
     }
     else if ( type == ItemRateChanged_Type )
     {
-       UpdatePosition();
+       UpdateRate();
     }
     else if ( type == ItemTitleChanged_Type )
     {