button: move into objects
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
0672414414
commit
5de485c648
|
@ -51,7 +51,7 @@ set(AWE_SRCS
|
||||||
${SOURCE_DIR}/luaa.c
|
${SOURCE_DIR}/luaa.c
|
||||||
${SOURCE_DIR}/spawn.c
|
${SOURCE_DIR}/spawn.c
|
||||||
${SOURCE_DIR}/mouse.c
|
${SOURCE_DIR}/mouse.c
|
||||||
${SOURCE_DIR}/button.c
|
${SOURCE_DIR}/objects/button.c
|
||||||
${SOURCE_DIR}/screen.c
|
${SOURCE_DIR}/screen.c
|
||||||
${SOURCE_DIR}/stack.c
|
${SOURCE_DIR}/stack.c
|
||||||
${SOURCE_DIR}/selection.c
|
${SOURCE_DIR}/selection.c
|
||||||
|
|
2
root.c
2
root.c
|
@ -22,7 +22,7 @@
|
||||||
#include <xcb/xtest.h>
|
#include <xcb/xtest.h>
|
||||||
|
|
||||||
#include "globalconf.h"
|
#include "globalconf.h"
|
||||||
#include "button.h"
|
#include "objects/button.h"
|
||||||
#include "wibox.h"
|
#include "wibox.h"
|
||||||
#include "luaa.h"
|
#include "luaa.h"
|
||||||
#include "window.h"
|
#include "window.h"
|
||||||
|
|
4
window.c
4
window.c
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* window.c - window handling functions
|
* window.c - window handling functions
|
||||||
*
|
*
|
||||||
* Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
|
* Copyright © 2007-2009 Julien Danjou <julien@danjou.info>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
@ -23,7 +23,7 @@
|
||||||
#include <xcb/xcb_atom.h>
|
#include <xcb/xcb_atom.h>
|
||||||
|
|
||||||
#include "window.h"
|
#include "window.h"
|
||||||
#include "button.h"
|
#include "objects/button.h"
|
||||||
#include "common/atoms.h"
|
#include "common/atoms.h"
|
||||||
|
|
||||||
/** Mask shorthands */
|
/** Mask shorthands */
|
||||||
|
|
Loading…
Reference in New Issue