diff options
author | taiyu <[email protected]> | 2015-09-12 02:38:03 -0700 |
---|---|---|
committer | taiyu <[email protected]> | 2015-09-12 02:38:03 -0700 |
commit | e1d18e42a8f3a597b9bf5f1bb2ab6c346e4e7983 (patch) | |
tree | 8a8ac30c539f4a63bb249b8c5e27e724a4241c9f /sway/ipc.c | |
parent | f5343adae4d631e4cdade7869b4d73fc97b4ac5f (diff) |
new_workspace null behavior + testmap functions + regex
Diffstat (limited to 'sway/ipc.c')
-rw-r--r-- | sway/ipc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -207,7 +207,7 @@ void ipc_client_handle_command(struct ipc_client *client) { case IPC_GET_WORKSPACES: { json_object *workspaces = json_object_new_array(); - container_map(&root_container, ipc_get_workspaces_callback, workspaces); + swayc_map(ipc_get_workspaces_callback, workspaces); const char *json_string = json_object_to_json_string(workspaces); ipc_send_reply(client, json_string, (uint32_t) strlen(json_string)); json_object_put(workspaces); // free @@ -216,7 +216,7 @@ void ipc_client_handle_command(struct ipc_client *client) { case IPC_GET_OUTPUTS: { json_object *outputs = json_object_new_array(); - container_map(&root_container, ipc_get_outputs_callback, outputs); + swayc_map(ipc_get_outputs_callback, outputs); const char *json_string = json_object_to_json_string(outputs); ipc_send_reply(client, json_string, (uint32_t) strlen(json_string)); json_object_put(outputs); // free |