summaryrefslogtreecommitdiffstats
path: root/src/server/connectionframe/connectionframe.h
diff options
context:
space:
mode:
authorsr2013-02-05 19:48:39 +0100
committersr2013-02-05 19:48:39 +0100
commite9b4cb4721b7c7f02728e22f92f5ad7a94828521 (patch)
tree14e7573bf8ec0764cb9b9519f81ceb49830b777a /src/server/connectionframe/connectionframe.h
parent... (diff)
downloadpvs2-e9b4cb4721b7c7f02728e22f92f5ad7a94828521.tar.gz
pvs2-e9b4cb4721b7c7f02728e22f92f5ad7a94828521.tar.xz
pvs2-e9b4cb4721b7c7f02728e22f92f5ad7a94828521.zip
[SERVER] Go back from ClientId to int, so queued signal/slot connections work
Diffstat (limited to 'src/server/connectionframe/connectionframe.h')
-rw-r--r--src/server/connectionframe/connectionframe.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/server/connectionframe/connectionframe.h b/src/server/connectionframe/connectionframe.h
index ac1a0a8..a4d9ede 100644
--- a/src/server/connectionframe/connectionframe.h
+++ b/src/server/connectionframe/connectionframe.h
@@ -1,8 +1,7 @@
#ifndef _CONNECTIONFRAME_H_
#define _CONNECTIONFRAME_H_
#include <QtGui>
-
-class Client;
+#include "../net/client.h"
class ConnectionFrame : public QGroupBox
{
@@ -71,7 +70,7 @@ private slots:
void onClientDisconnected();
void onThumbUpdated(Client* client, const QPixmap& thumb);
void onVncServerStateChange(Client* client);
- void onVncClientStateChange(Client* client, ClientId lastSource);
+ void onVncClientStateChange(Client* client, int lastSource);
};
#endif