summaryrefslogtreecommitdiff
path: root/openbox/client.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-09-15 06:50:25 +0000
committerDana Jansens <danakj@orodu.net>2003-09-15 06:50:25 +0000
commit3e9d050ffe36fa08c1e3e6f610c4d6587d2fdadd (patch)
tree514e8ae087e424235aba47b20a51f939994f6143 /openbox/client.h
parent9e746b64390277e06c4be0b6afd863841cebed3e (diff)
save the sm_client_id just like saving other properties, dont query each time its needed
Diffstat (limited to 'openbox/client.h')
-rw-r--r--openbox/client.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/openbox/client.h b/openbox/client.h
index 06856b49..4d6ee56c 100644
--- a/openbox/client.h
+++ b/openbox/client.h
@@ -106,6 +106,8 @@ struct _ObClient
gchar *class;
/*! The specified role of the window, used for identification */
gchar *role;
+ /*! The session client id for the window. *This can be NULL!* */
+ gchar *sm_client_id;
/*! The type of window (what its function is) */
ObClientType type;
@@ -497,6 +499,6 @@ void client_set_layer(ObClient *self, int layer);
guint client_monitor(ObClient *self);
-gchar* client_get_sm_client_id(ObClient *self);
+void client_update_sm_client_id(ObClient *self);
#endif