summaryrefslogtreecommitdiff
path: root/src/window.c
diff options
context:
space:
mode:
authorsabetts <sabetts>2003-05-15 07:36:21 +0000
committersabetts <sabetts>2003-05-15 07:36:21 +0000
commit55fadaecf93dfdf6a7c9510098057c5152e3b920 (patch)
treef1fc81a4aa497466f1cf5a497386ae994265984c /src/window.c
parent2d8945e4ee37ceee9d58e91681c6d3722a83c956 (diff)
downloadratpoison-55fadaecf93dfdf6a7c9510098057c5152e3b920.zip
* src/data.h (struct rp_frame): renamed from rp_window_frame. All
dependant code updated. * src/main.c: remove child_info global. Add rp_children global. (chld_handler): update the terminated and status fields of any terminated children. * src/events.c (handle_signals): loop through each child process and remove them from the list. Print a message for any child that doesn't return a 0 status. * src/data.h (rp_child_info): new fields, terminated and node. remove child_info global. Add rp_children global. * src/actions.c (spawn): Add the command to the list of children.
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/window.c b/src/window.c
index cb17d60..5c1cfb5 100644
--- a/src/window.c
+++ b/src/window.c
@@ -368,7 +368,7 @@ give_window_focus (rp_window *win, rp_window *last_win)
void
unhide_transient_for (rp_window *win)
{
- rp_window_frame *frame;
+ rp_frame *frame;
rp_window *transient_for;
if (win == NULL) return;
@@ -474,7 +474,7 @@ void
set_active_window (rp_window *win)
{
rp_window *last_win;
- rp_window_frame *frame;
+ rp_frame *frame;
if (win == NULL) return;
@@ -511,7 +511,7 @@ set_active_window (rp_window *win)
void
goto_window (rp_window *win)
{
- rp_window_frame *frame;
+ rp_frame *frame;
frame = find_windows_frame (win);
if (frame)
@@ -692,7 +692,7 @@ free_window_stuff ()
numset_free (rp_window_numset);
}
-rp_window_frame *
+rp_frame *
win_get_frame (rp_window *win)
{
if (win->frame_number != EMPTY)