diff options
author | Pierre Ossman <ossman@cendio.se> | 2018-06-18 15:59:00 +0200 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2018-11-01 16:11:42 +0100 |
commit | 0d3ce87f11c7bbafe071a966e78a2921819d2d58 (patch) | |
tree | ec4613a3bc3579a9c1e15f9a30adfaf90e0f0705 /tests | |
parent | b14a6bc1aacc3238a1e318d9f165d25674f34d45 (diff) | |
download | tigervnc-0d3ce87f11c7bbafe071a966e78a2921819d2d58.tar.gz tigervnc-0d3ce87f11c7bbafe071a966e78a2921819d2d58.zip |
Rename ConnParams to ClientParams
Now that we've split out server state to ServerParams, ConnParams
only contains state for a client. Rename the class and variables
to reflect this.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/encperf.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/encperf.cxx b/tests/encperf.cxx index 1703efd1..f8b2555f 100644 --- a/tests/encperf.cxx +++ b/tests/encperf.cxx @@ -180,7 +180,7 @@ CConn::CConn(const char *filename) setDesktopSize(width, height); sc = new SConn(); - sc->cp.setPF((bool)translate ? fbPF : pf); + sc->client.setPF((bool)translate ? fbPF : pf); sc->setEncodings(sizeof(encodings) / sizeof(*encodings), encodings); } @@ -290,7 +290,7 @@ SConn::SConn() out = new DummyOutStream; setStreams(NULL, out); - setWriter(new rfb::SMsgWriter(&cp, out)); + setWriter(new rfb::SMsgWriter(&client, out)); manager = new Manager(this); } |