OTHER: Fixed mistake in fix for BUG 1963

This commit is contained in:
Thomas Frauendorfer 2008-05-15 03:25:59 +02:00
parent ca0582e1cc
commit 1bc5d6fb02

View file

@ -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<std::string> ("name"));
if (changed_pl == m_name) {
uint32_t newpos = pos.get<uint32_t> ("position");
return handle_update_pos (newpos);
}
return false;
return true;
}
bool