]> Dogcows Code - chaz/openbox/commitdiff
use the new sm_client_id function so all windows who should save state do. session...
authorDana Jansens <danakj@orodu.net>
Thu, 31 Jul 2003 08:05:38 +0000 (08:05 +0000)
committerDana Jansens <danakj@orodu.net>
Thu, 31 Jul 2003 08:05:38 +0000 (08:05 +0000)
openbox/session.c

index 58b07ca5b4843486f7f26dde9a8ccd1bd319b331..6e4c07d213bb5727cd11132bd2d820613e352cf1 100644 (file)
@@ -289,7 +289,7 @@ static gboolean session_save()
             if (!client_normal(c))
                 continue;
 
-            if (!PROP_GETS(c->window, sm_client_id, locale, &client_id))
+            if (!(client_id = client_get_sm_client_id(c)))
                 continue;
 
             prex = c->area.x;
@@ -374,11 +374,11 @@ void session_state_free(ObSessionState *state)
     }
 }
 
-static gboolean session_state_cmp(const ObSessionState *s, const ObClient *c)
+static gboolean session_state_cmp(ObSessionState *s, ObClient *c)
 {
     gchar *client_id;
 
-    if (!PROP_GETS(c->window, sm_client_id, locale, &client_id))
+    if (!(client_id = client_get_sm_client_id(c)))
         return FALSE;
     g_print("\nsaved %s\nnow %s\n", s->id, client_id);
     if (strcmp(s->id, client_id)) {
@@ -386,13 +386,13 @@ static gboolean session_state_cmp(const ObSessionState *s, const ObClient *c)
         return FALSE;
     }
     g_free(client_id);
-    g_print("\nsaved %s\nnow %s\n", s->name, c->name);
+    g_print("saved %s\nnow %s\n", s->name, c->name);
     if (strcmp(s->name, c->name))
         return FALSE;
-    g_print("\nsaved %s\nnow %s\n", s->class, c->class);
+    g_print("saved %s\nnow %s\n", s->class, c->class);
     if (strcmp(s->class, c->class))
         return FALSE;
-    g_print("\nsaved %s\nnow %s\n", s->role, c->role);
+    g_print("saved %s\nnow %s\n\n", s->role, c->role);
     if (strcmp(s->role, c->role))
         return FALSE;
     return TRUE;
@@ -417,6 +417,8 @@ void session_load(char *path)
     xmlNodePtr node, n;
     gchar *sm_id;
 
+    g_message("loading session from %s", path);
+
     if (!parse_load(path, "openbox_session", &doc, &node))
         return;
 
This page took 0.026564 seconds and 4 git commands to generate.