From 5766ea382b4d594d5baea0814c6524ab730f50a1 Mon Sep 17 00:00:00 2001 From: Leo Franchi Date: Tue, 22 May 2012 08:13:04 -0400 Subject: [PATCH] Fix heisenbug --- src/libtomahawk/accounts/AccountModel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libtomahawk/accounts/AccountModel.cpp b/src/libtomahawk/accounts/AccountModel.cpp index d853b8c46..73550b688 100644 --- a/src/libtomahawk/accounts/AccountModel.cpp +++ b/src/libtomahawk/accounts/AccountModel.cpp @@ -95,8 +95,8 @@ AccountModel::loadData() if ( acct ) { m_accounts << new AccountModelNode( acct ); -#if ACCOUNTMODEL_DEBUG const int removed = allAccounts.removeAll( acct ); +#if ACCOUNTMODEL_DEBUG qDebug() << "Removed custom account from misc accounts list, found:" << removed; qDebug() << "All accounts after remove:"; foreach ( Account* acct, allAccounts )