From b2a10de71a6e93fee2176080a3fe6685a662366a Mon Sep 17 00:00:00 2001 From: Klaas Freitag Date: Mon, 14 Jul 2014 15:28:26 +0200 Subject: [PATCH] Copyright plus minor beautification. --- src/mirall/socketapi.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mirall/socketapi.cpp b/src/mirall/socketapi.cpp index cbd796b77..b5f9fcf50 100644 --- a/src/mirall/socketapi.cpp +++ b/src/mirall/socketapi.cpp @@ -1,5 +1,6 @@ /* * Copyright (C) by Dominik Schmidt + * Copyright (C) by Klaas Freitag * * 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 @@ -182,7 +183,7 @@ SocketApi::SocketApi(QObject* parent) connect(_localServer, SIGNAL(newConnection()), this, SLOT(slotNewConnection())); // 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)), SLOT(slotJobCompleted(QString,SyncFileItem))); }