summaryrefslogtreecommitdiffstats
path: root/src/server/connectionframe/connectionframe.cpp
diff options
context:
space:
mode:
authorManuel Schneider2014-05-27 01:24:49 +0200
committerManuel Schneider2014-05-27 01:24:49 +0200
commitcf03683a0485ba757f4496ddc1ae92267d682595 (patch)
tree27bef0c5f7b2fd83cd5a77410fd165e4271b91f3 /src/server/connectionframe/connectionframe.cpp
parentUse enums for modes since not all combinations of _broadcast and _lockOthers ... (diff)
downloadpvs2-cf03683a0485ba757f4496ddc1ae92267d682595.tar.gz
pvs2-cf03683a0485ba757f4496ddc1ae92267d682595.tar.xz
pvs2-cf03683a0485ba757f4496ddc1ae92267d682595.zip
Dont emit _currentProjectionSource in signal vncClientStateChange . (not used)
Diffstat (limited to 'src/server/connectionframe/connectionframe.cpp')
-rw-r--r--src/server/connectionframe/connectionframe.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/connectionframe/connectionframe.cpp b/src/server/connectionframe/connectionframe.cpp
index bafa525..444902e 100644
--- a/src/server/connectionframe/connectionframe.cpp
+++ b/src/server/connectionframe/connectionframe.cpp
@@ -140,7 +140,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(updateAppearance()));
- connect( client, SIGNAL(vncClientStateChange(Client*, int)), this, SLOT(updateAppearance()));
+ connect( client, SIGNAL(vncClientStateChange(Client*)), this, SLOT(updateAppearance()));
_client = client;
_computerId = client->ip();
_lblHostName->setText(client->ip());