Copyright plus minor beautification.

This commit is contained in:
Klaas Freitag 2014-07-14 15:28:26 +02:00
parent 267b9e5c2f
commit b2a10de71a

View file

@ -1,5 +1,6 @@
/* /*
* Copyright (C) by Dominik Schmidt <dev@dominik-schmidt.de> * Copyright (C) by Dominik Schmidt <dev@dominik-schmidt.de>
* Copyright (C) by Klaas Freitag <freitag@owncloud.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -182,7 +183,7 @@ SocketApi::SocketApi(QObject* parent)
connect(_localServer, SIGNAL(newConnection()), this, SLOT(slotNewConnection())); connect(_localServer, SIGNAL(newConnection()), this, SLOT(slotNewConnection()));
// folder watcher // folder watcher
connect(FolderMan::instance(), SIGNAL(folderSyncStateChange(QString)), this, SLOT(slotUpdateFolderView(QString))); connect(FolderMan::instance(), SIGNAL(folderSyncStateChange(QString)), SLOT(slotSyncStateChanged(QString)));
connect(ProgressDispatcher::instance(), SIGNAL(jobCompleted(QString,SyncFileItem)), connect(ProgressDispatcher::instance(), SIGNAL(jobCompleted(QString,SyncFileItem)),
SLOT(slotJobCompleted(QString,SyncFileItem))); SLOT(slotJobCompleted(QString,SyncFileItem)));
} }