remove useless #include
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
19a454d978
commit
013b2afe62
11
awesome.c
11
awesome.c
|
@ -28,28 +28,17 @@
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
|
|
||||||
#include <ev.h>
|
#include <ev.h>
|
||||||
#include <xcb/xcb.h>
|
|
||||||
#include <xcb/randr.h>
|
|
||||||
#include <xcb/xcb_aux.h>
|
|
||||||
#include <xcb/xcb_atom.h>
|
|
||||||
#include <xcb/xcb_icccm.h>
|
|
||||||
|
|
||||||
#include "lua.h"
|
|
||||||
#include "event.h"
|
#include "event.h"
|
||||||
#include "layout.h"
|
|
||||||
#include "screen.h"
|
|
||||||
#include "window.h"
|
#include "window.h"
|
||||||
#include "client.h"
|
|
||||||
#include "focus.h"
|
#include "focus.h"
|
||||||
#include "ewmh.h"
|
#include "ewmh.h"
|
||||||
#include "tag.h"
|
|
||||||
#include "dbus.h"
|
#include "dbus.h"
|
||||||
#include "statusbar.h"
|
#include "statusbar.h"
|
||||||
#include "systray.h"
|
#include "systray.h"
|
||||||
#include "common/socket.h"
|
#include "common/socket.h"
|
||||||
#include "common/version.h"
|
#include "common/version.h"
|
||||||
#include "common/configopts.h"
|
#include "common/configopts.h"
|
||||||
#include "common/xutil.h"
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
awesome_t globalconf;
|
awesome_t globalconf;
|
||||||
|
|
3
client.c
3
client.c
|
@ -22,7 +22,6 @@
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#include <xcb/xcb.h>
|
#include <xcb/xcb.h>
|
||||||
#include <xcb/xcb_aux.h>
|
|
||||||
#include <xcb/xcb_atom.h>
|
#include <xcb/xcb_atom.h>
|
||||||
|
|
||||||
#include "client.h"
|
#include "client.h"
|
||||||
|
@ -38,8 +37,6 @@
|
||||||
#include "mouse.h"
|
#include "mouse.h"
|
||||||
#include "layouts/floating.h"
|
#include "layouts/floating.h"
|
||||||
#include "common/markup.h"
|
#include "common/markup.h"
|
||||||
#include "common/xutil.h"
|
|
||||||
#include "common/xscreen.h"
|
|
||||||
|
|
||||||
extern awesome_t globalconf;
|
extern awesome_t globalconf;
|
||||||
extern const name_func_link_t FloatingPlacementList[];
|
extern const name_func_link_t FloatingPlacementList[];
|
||||||
|
|
1
dbus.c
1
dbus.c
|
@ -26,7 +26,6 @@
|
||||||
#include <dbus/dbus.h>
|
#include <dbus/dbus.h>
|
||||||
|
|
||||||
#include "dbus.h"
|
#include "dbus.h"
|
||||||
#include "statusbar.h"
|
|
||||||
#include "widget.h"
|
#include "widget.h"
|
||||||
|
|
||||||
extern awesome_t globalconf;
|
extern awesome_t globalconf;
|
||||||
|
|
9
event.c
9
event.c
|
@ -19,16 +19,11 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <xcb/xcb_keysyms.h>
|
#include <xcb/xcb.h>
|
||||||
#include <xcb/xcb_atom.h>
|
#include <xcb/xcb_atom.h>
|
||||||
#include <xcb/xcb_aux.h>
|
|
||||||
|
|
||||||
#include "screen.h"
|
|
||||||
#include "event.h"
|
#include "event.h"
|
||||||
#include "tag.h"
|
|
||||||
#include "statusbar.h"
|
|
||||||
#include "window.h"
|
#include "window.h"
|
||||||
#include "mouse.h"
|
|
||||||
#include "ewmh.h"
|
#include "ewmh.h"
|
||||||
#include "client.h"
|
#include "client.h"
|
||||||
#include "widget.h"
|
#include "widget.h"
|
||||||
|
@ -38,8 +33,6 @@
|
||||||
#include "lua.h"
|
#include "lua.h"
|
||||||
#include "systray.h"
|
#include "systray.h"
|
||||||
#include "layouts/floating.h"
|
#include "layouts/floating.h"
|
||||||
#include "common/xscreen.h"
|
|
||||||
#include "common/xutil.h"
|
|
||||||
|
|
||||||
extern awesome_t globalconf;
|
extern awesome_t globalconf;
|
||||||
|
|
||||||
|
|
1
ewmh.c
1
ewmh.c
|
@ -24,7 +24,6 @@
|
||||||
|
|
||||||
#include <xcb/xcb.h>
|
#include <xcb/xcb.h>
|
||||||
#include <xcb/xcb_atom.h>
|
#include <xcb/xcb_atom.h>
|
||||||
#include <xcb/xcb_aux.h>
|
|
||||||
|
|
||||||
#include "ewmh.h"
|
#include "ewmh.h"
|
||||||
#include "tag.h"
|
#include "tag.h"
|
||||||
|
|
|
@ -25,7 +25,6 @@
|
||||||
|
|
||||||
#include "keybinding.h"
|
#include "keybinding.h"
|
||||||
#include "event.h"
|
#include "event.h"
|
||||||
#include "lua.h"
|
|
||||||
#include "window.h"
|
#include "window.h"
|
||||||
|
|
||||||
extern awesome_t globalconf;
|
extern awesome_t globalconf;
|
||||||
|
|
|
@ -21,13 +21,9 @@
|
||||||
|
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
#include <xcb/xcb.h>
|
|
||||||
#include <xcb/xcb_aux.h>
|
|
||||||
|
|
||||||
#include "keygrabber.h"
|
#include "keygrabber.h"
|
||||||
#include "event.h"
|
#include "event.h"
|
||||||
#include "structs.h"
|
#include "structs.h"
|
||||||
#include "lua.h"
|
|
||||||
|
|
||||||
extern awesome_t globalconf;
|
extern awesome_t globalconf;
|
||||||
|
|
||||||
|
|
11
layout.c
11
layout.c
|
@ -19,21 +19,10 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <xcb/xcb.h>
|
|
||||||
#include <xcb/xcb_atom.h>
|
|
||||||
#include <xcb/xcb_aux.h>
|
|
||||||
|
|
||||||
#include "tag.h"
|
#include "tag.h"
|
||||||
#include "focus.h"
|
#include "focus.h"
|
||||||
#include "widget.h"
|
|
||||||
#include "window.h"
|
#include "window.h"
|
||||||
#include "client.h"
|
|
||||||
#include "screen.h"
|
#include "screen.h"
|
||||||
#include "layouts/magnifier.h"
|
|
||||||
#include "layouts/tile.h"
|
|
||||||
#include "layouts/max.h"
|
|
||||||
#include "layouts/fibonacci.h"
|
|
||||||
#include "layouts/floating.h"
|
|
||||||
|
|
||||||
extern awesome_t globalconf;
|
extern awesome_t globalconf;
|
||||||
|
|
||||||
|
|
3
lua.c
3
lua.c
|
@ -26,6 +26,7 @@
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
#include <ev.h>
|
#include <ev.h>
|
||||||
|
|
||||||
#include <lua.h>
|
#include <lua.h>
|
||||||
#include <lauxlib.h>
|
#include <lauxlib.h>
|
||||||
#include <lualib.h>
|
#include <lualib.h>
|
||||||
|
@ -35,11 +36,9 @@
|
||||||
|
|
||||||
#include "ewmh.h"
|
#include "ewmh.h"
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "structs.h"
|
|
||||||
#include "lua.h"
|
#include "lua.h"
|
||||||
#include "tag.h"
|
#include "tag.h"
|
||||||
#include "client.h"
|
#include "client.h"
|
||||||
#include "window.h"
|
|
||||||
#include "statusbar.h"
|
#include "statusbar.h"
|
||||||
#include "titlebar.h"
|
#include "titlebar.h"
|
||||||
#include "screen.h"
|
#include "screen.h"
|
||||||
|
|
5
mouse.c
5
mouse.c
|
@ -20,16 +20,11 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <stdbool.h>
|
|
||||||
|
|
||||||
#include <xcb/xcb.h>
|
|
||||||
#include <xcb/xcb_aux.h>
|
|
||||||
|
|
||||||
#include "common/tokenize.h"
|
#include "common/tokenize.h"
|
||||||
#include "mouse.h"
|
#include "mouse.h"
|
||||||
#include "screen.h"
|
#include "screen.h"
|
||||||
#include "tag.h"
|
#include "tag.h"
|
||||||
#include "event.h"
|
|
||||||
#include "client.h"
|
#include "client.h"
|
||||||
#include "titlebar.h"
|
#include "titlebar.h"
|
||||||
#include "layouts/floating.h"
|
#include "layouts/floating.h"
|
||||||
|
|
|
@ -19,9 +19,6 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <xcb/xcb.h>
|
|
||||||
#include <xcb/xcb_aux.h>
|
|
||||||
|
|
||||||
#include "placement.h"
|
#include "placement.h"
|
||||||
#include "screen.h"
|
#include "screen.h"
|
||||||
#include "client.h"
|
#include "client.h"
|
||||||
|
|
|
@ -20,13 +20,10 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <xcb/xcb.h>
|
#include <xcb/xcb.h>
|
||||||
#include <xcb/xcb_aux.h>
|
|
||||||
|
|
||||||
#include "statusbar.h"
|
#include "statusbar.h"
|
||||||
#include "screen.h"
|
#include "screen.h"
|
||||||
#include "tag.h"
|
|
||||||
#include "widget.h"
|
#include "widget.h"
|
||||||
#include "window.h"
|
|
||||||
#include "ewmh.h"
|
#include "ewmh.h"
|
||||||
|
|
||||||
extern awesome_t globalconf;
|
extern awesome_t globalconf;
|
||||||
|
|
|
@ -20,15 +20,11 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <xcb/xcb.h>
|
#include <xcb/xcb.h>
|
||||||
#include <xcb/xcb_aux.h>
|
|
||||||
#include <xcb/xcb_icccm.h>
|
#include <xcb/xcb_icccm.h>
|
||||||
|
|
||||||
#include "structs.h"
|
|
||||||
#include "systray.h"
|
#include "systray.h"
|
||||||
#include "window.h"
|
#include "window.h"
|
||||||
#include "widget.h"
|
#include "widget.h"
|
||||||
#include "common/xembed.h"
|
|
||||||
#include "common/swindow.h"
|
|
||||||
|
|
||||||
#define SYSTEM_TRAY_REQUEST_DOCK 0 /* Begin icon docking */
|
#define SYSTEM_TRAY_REQUEST_DOCK 0 /* Begin icon docking */
|
||||||
|
|
||||||
|
|
3
tag.c
3
tag.c
|
@ -19,9 +19,6 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <X11/Xutil.h>
|
|
||||||
|
|
||||||
#include "screen.h"
|
#include "screen.h"
|
||||||
#include "tag.h"
|
#include "tag.h"
|
||||||
#include "client.h"
|
#include "client.h"
|
||||||
|
|
|
@ -26,9 +26,7 @@
|
||||||
|
|
||||||
#include "titlebar.h"
|
#include "titlebar.h"
|
||||||
#include "client.h"
|
#include "client.h"
|
||||||
#include "screen.h"
|
|
||||||
#include "widget.h"
|
#include "widget.h"
|
||||||
#include "layouts/floating.h"
|
|
||||||
|
|
||||||
extern awesome_t globalconf;
|
extern awesome_t globalconf;
|
||||||
|
|
||||||
|
|
3
widget.c
3
widget.c
|
@ -22,14 +22,11 @@
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
|
||||||
#include <xcb/xcb.h>
|
#include <xcb/xcb.h>
|
||||||
#include <xcb/xcb_aux.h>
|
|
||||||
#include <xcb/xcb_atom.h>
|
#include <xcb/xcb_atom.h>
|
||||||
|
|
||||||
#include "widget.h"
|
#include "widget.h"
|
||||||
#include "statusbar.h"
|
|
||||||
#include "titlebar.h"
|
#include "titlebar.h"
|
||||||
#include "event.h"
|
#include "event.h"
|
||||||
#include "lua.h"
|
|
||||||
|
|
||||||
extern awesome_t globalconf;
|
extern awesome_t globalconf;
|
||||||
|
|
||||||
|
|
3
window.c
3
window.c
|
@ -21,10 +21,7 @@
|
||||||
|
|
||||||
#include <xcb/xcb.h>
|
#include <xcb/xcb.h>
|
||||||
#include <xcb/xcb_atom.h>
|
#include <xcb/xcb_atom.h>
|
||||||
#include <xcb/xcb_keysyms.h>
|
|
||||||
#include <xcb/xcb_aux.h>
|
|
||||||
|
|
||||||
#include "structs.h"
|
|
||||||
#include "window.h"
|
#include "window.h"
|
||||||
|
|
||||||
extern awesome_t globalconf;
|
extern awesome_t globalconf;
|
||||||
|
|
Loading…
Reference in New Issue