summaryrefslogtreecommitdiffstats
path: root/common/rfb/CMsgWriter.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/rfb/CMsgWriter.h')
-rw-r--r--common/rfb/CMsgWriter.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/rfb/CMsgWriter.h b/common/rfb/CMsgWriter.h
index 1322186a..1f4b92d8 100644
--- a/common/rfb/CMsgWriter.h
+++ b/common/rfb/CMsgWriter.h
@@ -30,14 +30,14 @@ namespace rdr { class OutStream; }
namespace rfb {
class PixelFormat;
- class ConnParams;
+ class ServerParams;
struct ScreenSet;
struct Point;
struct Rect;
class CMsgWriter {
public:
- CMsgWriter(ConnParams* cp, rdr::OutStream* os);
+ CMsgWriter(ServerParams* server, rdr::OutStream* os);
virtual ~CMsgWriter();
void writeClientInit(bool shared);
@@ -60,7 +60,7 @@ namespace rfb {
void startMsg(int type);
void endMsg();
- ConnParams* cp;
+ ServerParams* server;
rdr::OutStream* os;
};
}