From 61d766be11206c7be2d4b30ba5461fa676095b8b Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Wed, 20 Jun 2012 10:50:15 +0200 Subject: [PATCH] * Remove obsolete Database::m_indexReady. --- src/libtomahawk/database/Database.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/libtomahawk/database/Database.h b/src/libtomahawk/database/Database.h index 7bf05a09e..31c11a14b 100644 --- a/src/libtomahawk/database/Database.h +++ b/src/libtomahawk/database/Database.h @@ -55,7 +55,6 @@ public: QString dbid() const; void loadIndex(); - bool indexReady() const { return m_indexReady; } bool isReady() const { return m_ready; } DatabaseImpl* impl() const { return m_impl; } @@ -76,10 +75,10 @@ private slots: private: bool m_ready; + DatabaseImpl* m_impl; DatabaseWorker* m_workerRW; QList m_workers; - bool m_indexReady; int m_maxConcurrentThreads; static Database* s_instance;