From 28ea379c10264625d4eb022b4b2d70cf41d4911f Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Sun, 15 Feb 2009 03:07:29 +0100 Subject: [PATCH] Update TODO and header-comments --- TODO | 1 - src/commands.c | 2 +- src/debug.c | 7 ++++--- src/handlers.c | 2 +- src/layout.c | 2 +- src/mainx.c | 2 +- src/table.c | 7 +++---- src/util.c | 4 +++- src/xcb.c | 6 ++++-- src/xinerama.c | 2 +- 10 files changed, 19 insertions(+), 16 deletions(-) diff --git a/TODO b/TODO index bfd98eea..ff02d9f1 100644 --- a/TODO +++ b/TODO @@ -1,7 +1,6 @@ TODO list, in order of importance: * freely resizable (e.g. using your mouse, for now) percentage of rows/cols - * xinerama * document stuff! * more documentation! * debian package diff --git a/src/commands.c b/src/commands.c index 6c9ba500..0920c2ab 100644 --- a/src/commands.c +++ b/src/commands.c @@ -3,7 +3,7 @@ * * i3 - an improved dynamic tiling window manager * - * (c) 2009 Michael Stapelberg and contributors + * © 2009 Michael Stapelberg and contributors * * See file LICENSE for license information. * diff --git a/src/debug.c b/src/debug.c index 0d9066b3..1be47269 100644 --- a/src/debug.c +++ b/src/debug.c @@ -3,16 +3,17 @@ * * i3 - an improved dynamic tiling window manager * - * (c) 2009 Michael Stapelberg and contributors + * © 2009 Michael Stapelberg and contributors * * See file LICENSE for license information. * + * debug.c: Contains debugging functions, especially FormatEvent, which prints unhandled events. + * This code is from xcb-util. + * */ #include #include -/* Debug functions here, especially the FormatEvent-stuff, which prints unhandled events */ - static const char *labelError[] = { "Success", "BadRequest", diff --git a/src/handlers.c b/src/handlers.c index 5aef05e9..b8ae19d4 100644 --- a/src/handlers.c +++ b/src/handlers.c @@ -3,7 +3,7 @@ * * i3 - an improved dynamic tiling window manager * - * (c) 2009 Michael Stapelberg and contributors + * © 2009 Michael Stapelberg and contributors * * See file LICENSE for license information. * diff --git a/src/layout.c b/src/layout.c index e88a54e6..7145aacf 100644 --- a/src/layout.c +++ b/src/layout.c @@ -3,7 +3,7 @@ * * i3 - an improved dynamic tiling window manager * - * (c) 2009 Michael Stapelberg and contributors + * © 2009 Michael Stapelberg and contributors * * See file LICENSE for license information. * diff --git a/src/mainx.c b/src/mainx.c index d3ea967c..9bdd3ae3 100644 --- a/src/mainx.c +++ b/src/mainx.c @@ -3,7 +3,7 @@ * * i3 - an improved dynamic tiling window manager * - * (c) 2009 Michael Stapelberg and contributors + * © 2009 Michael Stapelberg and contributors * * See file LICENSE for license information. * diff --git a/src/table.c b/src/table.c index 41efde0b..c0f75e16 100644 --- a/src/table.c +++ b/src/table.c @@ -3,13 +3,12 @@ * * i3 - an improved dynamic tiling window manager * - * (c) 2009 Michael Stapelberg and contributors + * © 2009 Michael Stapelberg and contributors * * See file LICENSE for license information. * - */ -/* - * This file provides functions for easier accessing of _the_ table + * table.c: Functions/macros for easy modifying/accessing of _the_ table (defining our + * layout). * */ #include diff --git a/src/util.c b/src/util.c index 76abe2aa..8bbc145c 100644 --- a/src/util.c +++ b/src/util.c @@ -3,10 +3,12 @@ * * i3 - an improved dynamic tiling window manager * - * (c) 2009 Michael Stapelberg and contributors + * © 2009 Michael Stapelberg and contributors * * See file LICENSE for license information. * + * util.c: Utility functions, which can be useful everywhere. + * */ #include #include diff --git a/src/xcb.c b/src/xcb.c index c5a3aa06..f1563afb 100644 --- a/src/xcb.c +++ b/src/xcb.c @@ -3,17 +3,19 @@ * * i3 - an improved dynamic tiling window manager * - * (c) 2009 Michael Stapelberg and contributors + * © 2009 Michael Stapelberg and contributors * * See file LICENSE for license information. * + * xcb.c: Helper functions for easier usage of XCB + * */ #include #include #include #include -/* All the helper functions needed for efficiently using XCB */ + #include "util.h" /* diff --git a/src/xinerama.c b/src/xinerama.c index 4c8ffa88..b7c931fe 100644 --- a/src/xinerama.c +++ b/src/xinerama.c @@ -3,7 +3,7 @@ * * i3 - an improved dynamic tiling window manager * - * (c) 2009 Michael Stapelberg and contributors + * © 2009 Michael Stapelberg and contributors * * See file LICENSE for license information. *