From 1bc5d6fb0286c4dc6031b3d90910cde85ab8f7b9 Mon Sep 17 00:00:00 2001 From: Thomas Frauendorfer Date: Thu, 15 May 2008 03:25:59 +0200 Subject: [PATCH] OTHER: Fixed mistake in fix for BUG 1963 --- lib/playlistmodel.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/playlistmodel.cpp b/lib/playlistmodel.cpp index fbd53a5..4ab291b 100644 --- a/lib/playlistmodel.cpp +++ b/lib/playlistmodel.cpp @@ -122,13 +122,12 @@ PlaylistModel::handle_pls_loaded (const std::string &name) bool PlaylistModel::handle_update_positions (const Xmms::Dict &pos) { - QString changed_pl = XClient::stdToQ (pos.get ("name")); if (changed_pl == m_name) { uint32_t newpos = pos.get ("position"); return handle_update_pos (newpos); } - return false; + return true; } bool