summaryrefslogtreecommitdiff
path: root/openbox
diff options
context:
space:
mode:
Diffstat (limited to 'openbox')
-rw-r--r--openbox/client.c2
-rw-r--r--openbox/client.h2
-rw-r--r--openbox/config.h2
-rw-r--r--openbox/dock.c2
-rw-r--r--openbox/dock.h2
-rw-r--r--openbox/focus_cycle_indicator.c2
-rw-r--r--openbox/focus_cycle_popup.c2
-rw-r--r--openbox/frame.c2
-rw-r--r--openbox/frame.h2
-rw-r--r--openbox/framerender.c2
-rw-r--r--openbox/menu.h2
-rw-r--r--openbox/menuframe.c2
-rw-r--r--openbox/menuframe.h2
-rw-r--r--openbox/moveresize.c4
-rw-r--r--openbox/openbox.c4
-rw-r--r--openbox/openbox.h4
-rw-r--r--openbox/popup.c4
-rw-r--r--openbox/popup.h2
-rw-r--r--openbox/prompt.h2
-rw-r--r--openbox/screen.c2
20 files changed, 24 insertions, 24 deletions
diff --git a/openbox/client.c b/openbox/client.c
index 184ae171..4d8f4e77 100644
--- a/openbox/client.c
+++ b/openbox/client.c
@@ -38,7 +38,7 @@
#include "menuframe.h"
#include "keyboard.h"
#include "mouse.h"
-#include "render/render.h"
+#include "obrender/render.h"
#include "gettext.h"
#include "obt/display.h"
#include "obt/prop.h"
diff --git a/openbox/client.h b/openbox/client.h
index 8126abe2..a361e367 100644
--- a/openbox/client.h
+++ b/openbox/client.h
@@ -25,7 +25,7 @@
#include "geom.h"
#include "stacking.h"
#include "window.h"
-#include "render/color.h"
+#include "obrender/color.h"
#include <glib.h>
#include <X11/Xlib.h>
diff --git a/openbox/config.h b/openbox/config.h
index 11796dcb..5c18ad3a 100644
--- a/openbox/config.h
+++ b/openbox/config.h
@@ -26,7 +26,7 @@
#include "client.h"
#include "geom.h"
#include "moveresize.h"
-#include "render/render.h"
+#include "obrender/render.h"
#include "obt/parse.h"
#include <glib.h>
diff --git a/openbox/dock.c b/openbox/dock.c
index ce2dafb8..d1f6b294 100644
--- a/openbox/dock.c
+++ b/openbox/dock.c
@@ -23,7 +23,7 @@
#include "config.h"
#include "grab.h"
#include "openbox.h"
-#include "render/theme.h"
+#include "obrender/theme.h"
#include "obt/prop.h"
#define DOCK_EVENT_MASK (ButtonPressMask | ButtonReleaseMask | \
diff --git a/openbox/dock.h b/openbox/dock.h
index 3463f27b..8bc735ee 100644
--- a/openbox/dock.h
+++ b/openbox/dock.h
@@ -22,7 +22,7 @@
#include "window.h"
#include "stacking.h"
#include "geom.h"
-#include "render/render.h"
+#include "obrender/render.h"
#include <glib.h>
#include <X11/Xlib.h>
diff --git a/openbox/focus_cycle_indicator.c b/openbox/focus_cycle_indicator.c
index 5d7ecb3d..89527903 100644
--- a/openbox/focus_cycle_indicator.c
+++ b/openbox/focus_cycle_indicator.c
@@ -23,7 +23,7 @@
#include "openbox.h"
#include "frame.h"
#include "event.h"
-#include "render/render.h"
+#include "obrender/render.h"
#include <X11/Xlib.h>
#include <glib.h>
diff --git a/openbox/focus_cycle_popup.c b/openbox/focus_cycle_popup.c
index 0f9bd752..4f697fdd 100644
--- a/openbox/focus_cycle_popup.c
+++ b/openbox/focus_cycle_popup.c
@@ -26,7 +26,7 @@
#include "config.h"
#include "window.h"
#include "event.h"
-#include "render/render.h"
+#include "obrender/render.h"
#include <X11/Xlib.h>
#include <glib.h>
diff --git a/openbox/frame.c b/openbox/frame.c
index 6387d7ef..084f3f6a 100644
--- a/openbox/frame.c
+++ b/openbox/frame.c
@@ -28,7 +28,7 @@
#include "focus_cycle_indicator.h"
#include "moveresize.h"
#include "screen.h"
-#include "render/theme.h"
+#include "obrender/theme.h"
#include "obt/display.h"
#include "obt/prop.h"
diff --git a/openbox/frame.h b/openbox/frame.h
index 8687381d..1130709b 100644
--- a/openbox/frame.h
+++ b/openbox/frame.h
@@ -21,7 +21,7 @@
#define __frame_h
#include "geom.h"
-#include "render/render.h"
+#include "obrender/render.h"
typedef struct _ObFrame ObFrame;
diff --git a/openbox/framerender.c b/openbox/framerender.c
index bf71d2c3..28c12ae2 100644
--- a/openbox/framerender.c
+++ b/openbox/framerender.c
@@ -22,7 +22,7 @@
#include "screen.h"
#include "client.h"
#include "framerender.h"
-#include "render/theme.h"
+#include "obrender/theme.h"
static void framerender_label(ObFrame *self, RrAppearance *a);
static void framerender_icon(ObFrame *self, RrAppearance *a);
diff --git a/openbox/menu.h b/openbox/menu.h
index 43efd413..16cf4291 100644
--- a/openbox/menu.h
+++ b/openbox/menu.h
@@ -21,7 +21,7 @@
#include "window.h"
#include "geom.h"
-#include "render/render.h"
+#include "obrender/render.h"
#include <glib.h>
diff --git a/openbox/menuframe.c b/openbox/menuframe.c
index 999dddf1..ee374de5 100644
--- a/openbox/menuframe.c
+++ b/openbox/menuframe.c
@@ -27,7 +27,7 @@
#include "openbox.h"
#include "config.h"
#include "obt/prop.h"
-#include "render/theme.h"
+#include "obrender/theme.h"
#define PADDING 2
#define MAX_MENU_WIDTH 400
diff --git a/openbox/menuframe.h b/openbox/menuframe.h
index f6a7b30e..87a718e7 100644
--- a/openbox/menuframe.h
+++ b/openbox/menuframe.h
@@ -22,7 +22,7 @@
#include "geom.h"
#include "window.h"
-#include "render/render.h"
+#include "obrender/render.h"
#include <glib.h>
diff --git a/openbox/moveresize.c b/openbox/moveresize.c
index 5db79f9f..99222577 100644
--- a/openbox/moveresize.c
+++ b/openbox/moveresize.c
@@ -29,8 +29,8 @@
#include "config.h"
#include "event.h"
#include "debug.h"
-#include "render/render.h"
-#include "render/theme.h"
+#include "obrender/render.h"
+#include "obrender/theme.h"
#include "obt/display.h"
#include "obt/prop.h"
#include "obt/keyboard.h"
diff --git a/openbox/openbox.c b/openbox/openbox.c
index 5f926bb6..c597d23f 100644
--- a/openbox/openbox.c
+++ b/openbox/openbox.c
@@ -43,8 +43,8 @@
#include "ping.h"
#include "prompt.h"
#include "gettext.h"
-#include "render/render.h"
-#include "render/theme.h"
+#include "obrender/render.h"
+#include "obrender/theme.h"
#include "obt/display.h"
#include "obt/prop.h"
#include "obt/keyboard.h"
diff --git a/openbox/openbox.h b/openbox/openbox.h
index b0529219..c43f0a61 100644
--- a/openbox/openbox.h
+++ b/openbox/openbox.h
@@ -21,8 +21,8 @@
#include "misc.h"
-#include "render/render.h"
-#include "render/theme.h"
+#include "obrender/render.h"
+#include "obrender/theme.h"
#include "obt/mainloop.h"
#include "obt/display.h"
diff --git a/openbox/popup.c b/openbox/popup.c
index a4192819..90ec32de 100644
--- a/openbox/popup.c
+++ b/openbox/popup.c
@@ -25,8 +25,8 @@
#include "stacking.h"
#include "event.h"
#include "screen.h"
-#include "render/render.h"
-#include "render/theme.h"
+#include "obrender/render.h"
+#include "obrender/theme.h"
ObPopup *popup_new(void)
{
diff --git a/openbox/popup.h b/openbox/popup.h
index 503e2773..f876e3ce 100644
--- a/openbox/popup.h
+++ b/openbox/popup.h
@@ -20,7 +20,7 @@
#define __popup_h
#include "window.h"
-#include "render/render.h"
+#include "obrender/render.h"
#include <glib.h>
struct _ObClientIcon;
diff --git a/openbox/prompt.h b/openbox/prompt.h
index d07793a9..0d7cfef8 100644
--- a/openbox/prompt.h
+++ b/openbox/prompt.h
@@ -21,7 +21,7 @@
#include "window.h"
#include "geom.h"
-#include "render/render.h"
+#include "obrender/render.h"
#include <glib.h>
#include <X11/Xlib.h>
diff --git a/openbox/screen.c b/openbox/screen.c
index bb98e084..bce2faaf 100644
--- a/openbox/screen.c
+++ b/openbox/screen.c
@@ -32,7 +32,7 @@
#include "focus.h"
#include "focus_cycle.h"
#include "popup.h"
-#include "render/render.h"
+#include "obrender/render.h"
#include "gettext.h"
#include "obt/display.h"
#include "obt/prop.h"