aboutsummaryrefslogtreecommitdiff
path: root/src/connect.h
diff options
context:
space:
mode:
authorFederico Angelilli <code@fedang.net>2023-11-18 15:07:24 +0100
committerFederico Angelilli <code@fedang.net>2023-11-18 15:07:24 +0100
commitbab8d5a6c2c6d56a97802bd23b2f5e03f0bec417 (patch)
treec9fe89c6fa669eac4c9800ff59251ddef730b915 /src/connect.h
parent3e042d595b4a8dd4959de39942671c75add3c090 (diff)
Use a single state in Connection
Diffstat (limited to 'src/connect.h')
-rw-r--r--src/connect.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/connect.h b/src/connect.h
index e348bcf..35ed3d3 100644
--- a/src/connect.h
+++ b/src/connect.h
@@ -25,7 +25,7 @@ struct Connection {
xcb_errors_context_t *errors;
xcb_ewmh_connection_t ewmh;
GSource *source;
- GPtrArray *states;
+ State *state;
};
Connection *connect_create();