summaryrefslogtreecommitdiff
path: root/src/remote.hh
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2013-01-11 18:44:02 +0100
committerMaxime Coste <frrrwww@gmail.com>2013-01-11 18:44:02 +0100
commitd2f0e2de667fae02e209b91638ba6257f0a65312 (patch)
treebf029d38b7f6be1cf2019b4a03253858d102f170 /src/remote.hh
parent914ede7a8258962990a7c24fac0e451bc7c1d7a6 (diff)
RemoteClient owns the FDWatcher of it's socket
Diffstat (limited to 'src/remote.hh')
-rw-r--r--src/remote.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remote.hh b/src/remote.hh
index 7024dc4a..b7a26681 100644
--- a/src/remote.hh
+++ b/src/remote.hh
@@ -22,9 +22,9 @@ public:
void write_next_key();
private:
- int m_socket;
std::unique_ptr<UserInterface> m_ui;
DisplayCoord m_dimensions;
+ FDWatcher m_socket_watcher;
};
}