1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-01-17 14:28:24 +01:00

Remove redundant semilcolons

This commit is contained in:
Uwe L. Korn 2014-11-06 13:59:32 +01:00
parent 6fba317ea9
commit 7324de71b9

View File

@ -59,8 +59,8 @@ public:
qDebug() << Q_FUNC_INFO;
}
bool isDeleting() { QMutexLocker locker( &m_deletingMutex ); return m_deleting; };
void setIsDeleting() { QMutexLocker locker( &m_deletingMutex ); m_deleting = true; };
bool isDeleting() { QMutexLocker locker( &m_deletingMutex ); return m_deleting; }
void setIsDeleting() { QMutexLocker locker( &m_deletingMutex ); m_deleting = true; }
signals:
void fileToScan( QFileInfo );