summaryrefslogtreecommitdiffstats
path: root/src/server/connectionframe/connectionframe.cpp
diff options
context:
space:
mode:
authorsr2013-02-05 19:34:13 +0100
committersr2013-02-05 19:34:13 +0100
commite19b548a33e138062c3559a69b7ad35d1f298627 (patch)
treeff3c21a9e9edf15448d3e43c72f127de8ae06dd7 /src/server/connectionframe/connectionframe.cpp
parent... (diff)
downloadpvs2-e19b548a33e138062c3559a69b7ad35d1f298627.tar.gz
pvs2-e19b548a33e138062c3559a69b7ad35d1f298627.tar.xz
pvs2-e19b548a33e138062c3559a69b7ad35d1f298627.zip
...
Diffstat (limited to 'src/server/connectionframe/connectionframe.cpp')
-rw-r--r--src/server/connectionframe/connectionframe.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/connectionframe/connectionframe.cpp b/src/server/connectionframe/connectionframe.cpp
index 05e24a4..a05af95 100644
--- a/src/server/connectionframe/connectionframe.cpp
+++ b/src/server/connectionframe/connectionframe.cpp
@@ -100,7 +100,7 @@ void ConnectionFrame::assignClient(Client* client)
connect(client, SIGNAL(disconnected()), this, SLOT(onClientDisconnected()));
connect(client, SIGNAL(thumbUpdated(Client*, const QPixmap&)), this, SLOT(onThumbUpdated(Client*, const QPixmap&)));
connect(client, SIGNAL(vncServerStateChange(Client*)), this, SLOT(onVncServerStateChange(Client*)));
- connect(client, SIGNAL(vncClientStateChange(Client*)), this, SLOT(onVncClientStateChange(Client*)));
+ connect(client, SIGNAL(vncClientStateChange(Client*, ClientId)), this, SLOT(onVncClientStateChange(Client*, ClientId)));
_client = client;
_computerId = client->computerId();
_lblHostName->setText(client->ip());
@@ -280,7 +280,7 @@ void ConnectionFrame::onVncServerStateChange(Client* client)
this->updateColor();
}
-void ConnectionFrame::onVncClientStateChange(Client* client)
+void ConnectionFrame::onVncClientStateChange(Client* client, ClientId lastSource)
{
this->updateColor();
}