]> git.sesse.net Git - vlc/commitdiff
Attempt to fix previous commit.
authorPierre d'Herbemont <pdherbemont@videolan.org>
Wed, 15 Aug 2007 06:18:35 +0000 (06:18 +0000)
committerPierre d'Herbemont <pdherbemont@videolan.org>
Wed, 15 Aug 2007 06:18:35 +0000 (06:18 +0000)
modules/gui/qt4/input_manager.cpp

index 3a5b0ce5e4a9aff20c19bc8c64529fda30ec0adf..c8c18eb8b1a41ed6b94b383f85717231cc0534d0 100644 (file)
@@ -138,10 +138,10 @@ void InputManager::update()
                   input_item_GetNowPlaying( input_GetItem(p_input) ),
                   input_GetItem(p_input)->psz_name );
     }
-    else if( !EMPTY_STR(input_item_GetNowPlaying( input_GetArtist(p_input) )) )
+    else if( !EMPTY_STR(input_item_GetArtist( input_GetItem(p_input) )) )
     {
         text.sprintf( "%s - %s",
-                  input_item_GetNowPlaying( input_GetArtist(p_input) ),
+                  input_item_GetArtist( input_GetItem(p_input) ),
                   input_GetItem(p_input)->psz_name );
     }
     else