diff options
author | sabetts <sabetts> | 2003-03-07 04:42:15 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2003-03-07 04:42:15 +0000 |
commit | e401dac992736a1a0ba3ee20146c9fec37a80df7 (patch) | |
tree | 255396ff78337ec8418ff59f5c87c49528ca7e35 | |
parent | 43669c3edb5e311c030175fa982c185c1647076e (diff) | |
download | ratpoison-e401dac992736a1a0ba3ee20146c9fec37a80df7.zip |
* src/Makefile.am (ratpoison_SOURCES): remove list.h and list.c,
add window.c and window.h
* src/ratpoison.h: include window.h instead of list.h
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/Makefile.am | 9 | ||||
-rw-r--r-- | src/ratpoison.h | 2 |
3 files changed, 10 insertions, 6 deletions
@@ -1,5 +1,10 @@ 2003-03-06 Shawn Betts <sabetts@sfu.ca> + * src/Makefile.am (ratpoison_SOURCES): remove list.h and list.c, + add window.c and window.h + + * src/ratpoison.h: include window.h instead of list.h + * src/main.c (main): call init_window_stuff(). Remove call to init_numbers(). (clean_up): call free_window_stuff(). Remove call to free_numbers(). diff --git a/src/Makefile.am b/src/Makefile.am index 6f907dd..d776330 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -17,7 +17,7 @@ ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ## -## $Id: Makefile.am,v 1.11 2001/04/01 01:17:53 sabetts Exp $ +## $Id: Makefile.am,v 1.12 2003/03/07 04:42:15 sabetts Exp $ bin_PROGRAMS = ratpoison @@ -36,8 +36,6 @@ ratpoison_SOURCES = actions.c \ getopt1.c \ input.c \ input.h \ - list.c \ - list.h \ main.c \ manage.c \ manage.h \ @@ -48,5 +46,6 @@ ratpoison_SOURCES = actions.c \ sbuf.c \ sbuf.h \ split.c \ - split.h - + split.h \ + window.c \ + window.h
\ No newline at end of file diff --git a/src/ratpoison.h b/src/ratpoison.h index ca2d169..c0b725c 100644 --- a/src/ratpoison.h +++ b/src/ratpoison.h @@ -57,7 +57,7 @@ extern XGCValues gv; #include "data.h" #include "manage.h" -#include "list.h" +#include "window.h" #include "bar.h" #include "events.h" #include "number.h" |