diff options
author | sabetts <sabetts> | 2003-05-15 06:57:09 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2003-05-15 06:57:09 +0000 |
commit | 2d8945e4ee37ceee9d58e91681c6d3722a83c956 (patch) | |
tree | d996cd52065ba42dbcfb0089934303a8c604aa35 /src/actions.c | |
parent | 0271c6daa38124232902a976e082a9b21dcc7043 (diff) | |
download | ratpoison-2d8945e4ee37ceee9d58e91681c6d3722a83c956.zip |
(struct rp_screen): rename from
screen_info. Dependant code updated.
Diffstat (limited to 'src/actions.c')
-rw-r--r-- | src/actions.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/actions.c b/src/actions.c index 9f1cdeb..7c270ce 100644 --- a/src/actions.c +++ b/src/actions.c @@ -1222,7 +1222,7 @@ cmd_windows (int interactive, char *data) struct sbuf *window_list = NULL; char *tmp; int dummy; - screen_info *s; + rp_screen *s; if (interactive) { @@ -1403,7 +1403,7 @@ cmd_only (int interactive, char *data) char * cmd_remove (int interactive, char *data) { - screen_info *s = current_screen(); + rp_screen *s = current_screen(); rp_window_frame *frame; if (num_frames(s) <= 1) @@ -1433,7 +1433,7 @@ cmd_shrink (int interactive, char *data) char * cmd_resize (int interactive, char *data) { - screen_info *s = current_screen (); + rp_screen *s = current_screen (); /* If the user calls resize with arguments, treat it like the non-interactive version. */ @@ -1539,7 +1539,7 @@ cmd_defresizeunit (int interactive, char *data) char * cmd_banish (int interactive, char *data) { - screen_info *s; + rp_screen *s; s = current_screen (); @@ -1559,7 +1559,7 @@ cmd_curframe (int interactive, char *data) char * cmd_license (int interactive, char *data) { - screen_info *s = current_screen(); + rp_screen *s = current_screen(); XEvent ev; Window fwin; /* Window currently in focus */ int revert; @@ -1641,7 +1641,7 @@ cmd_help (int interactive, char *data) { if (interactive) { - screen_info *s = current_screen(); + rp_screen *s = current_screen(); XEvent ev; Window fwin; /* Window currently in focus */ int revert; @@ -2005,7 +2005,7 @@ cmd_defbargravity (int interactive, char *data) } static void -update_gc (screen_info *s) +update_gc (rp_screen *s) { XGCValues gv; @@ -2893,7 +2893,7 @@ char * cmd_fselect (int interactive, char *data) { rp_window_frame *frame; - screen_info *s = current_screen(); + rp_screen *s = current_screen(); int fnum = -1; /* If the command was specified on the command line or an argument @@ -3024,7 +3024,7 @@ cmd_fdump (int interactively, char *data) char * cmd_frestore (int interactively, char *data) { - screen_info *s = current_screen(); + rp_screen *s = current_screen(); char *token; char *dup; rp_window_frame *new, *cur; |