1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-19 15:29:42 +01:00

* Remove obsolete Database::m_indexReady.

This commit is contained in:
Christian Muehlhaeuser 2012-06-20 10:50:15 +02:00
parent 2603a7d28b
commit 61d766be11

View File

@ -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<DatabaseWorker*> m_workers;
bool m_indexReady;
int m_maxConcurrentThreads;
static Database* s_instance;