1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-01 20:00:13 +02: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; qDebug() << Q_FUNC_INFO;
} }
bool isDeleting() { QMutexLocker locker( &m_deletingMutex ); return m_deleting; }; bool isDeleting() { QMutexLocker locker( &m_deletingMutex ); return m_deleting; }
void setIsDeleting() { QMutexLocker locker( &m_deletingMutex ); m_deleting = true; }; void setIsDeleting() { QMutexLocker locker( &m_deletingMutex ); m_deleting = true; }
signals: signals:
void fileToScan( QFileInfo ); void fileToScan( QFileInfo );