1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Change some tabs to space for consistency

This commit is contained in:
tux3 2015-04-24 23:05:44 +02:00
parent 8b6ef7ab9d
commit cdf3d9f553
No known key found for this signature in database
GPG Key ID: 7E086DD661263264

View File

@ -37,14 +37,14 @@ CameraWorker::~CameraWorker()
void CameraWorker::onStart()
{
if (!clock)
{
clock = new QTimer(this);
clock->setSingleShot(false);
clock->setInterval(1000/60);
if (!clock)
{
clock = new QTimer(this);
clock->setSingleShot(false);
clock->setInterval(1000/60);
connect(clock, &QTimer::timeout, this, &CameraWorker::doWork);
}
connect(clock, &QTimer::timeout, this, &CameraWorker::doWork);
}
emit started();
}