wmii

git clone git://oldgit.suckless.org/wmii/
Log | Files | Refs | README | LICENSE

commit b18cdb0fd22904ed5b9ca2cb815e84ca5bb0de63
parent f043abedc317648b43e402874c7df8a22618969c
Author: Anselm R. Garbe <garbeam@wmii.de>
Date:   Tue, 13 Jun 2006 18:28:11 +0200

added comment to blitz.h


Diffstat:
liblitz/blitz.h | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/liblitz/blitz.h b/liblitz/blitz.h @@ -95,6 +95,7 @@ union BlitzWidget { BlitzLayout layout; }; +/* obsolete, will be replaced soon */ typedef struct { BlitzAlign align; Drawable drawable; @@ -105,6 +106,7 @@ typedef struct { XRectangle *notch; /* relative notch rect */ char *data; } BlitzDraw; +/***/ Blitz __blitz; @@ -130,8 +132,6 @@ void blitz_add_widget(BlitzWidget **l, BlitzWidget *w); void blitz_rm_widget(BlitzWidget **l, BlitzWidget *w); /* window.c */ -BlitzWin *blitz_create_win(unsigned long mask, - int x, int y, int w, int h); -void blitz_resize_win(BlitzWin *win, - int x, int y, int w, int h); +BlitzWin *blitz_create_win(unsigned long mask, int x, int y, int w, int h); +void blitz_resize_win(BlitzWin *win, int x, int y, int w, int h); void blitz_destroy_win(BlitzWin *win);