fix header includes in obtheme
authorDana Jansens <danakj@orodu.net>
Fri, 21 May 2010 19:37:39 +0000 (15:37 -0400)
committerDana Jansens <danakj@orodu.net>
Sat, 26 Jun 2010 23:30:45 +0000 (01:30 +0200)
some should point to other dirs, and some need to point to the renamed
parser.y's new output parser.h

obtheme/lexer.l
obtheme/obtheme.c
obtheme/obtheme.h
obtheme/parser.y

index 0806e10..067e575 100644 (file)
@@ -4,11 +4,11 @@
 #include <stdlib.h>
 #include <string.h>
 #include <glib.h>
-#include "frame.h"
-#include "misc.h"
-#include "render.h"
+#include "openbox/frame.h"
+#include "openbox/misc.h"
+#include "obrender/render.h"
 #include "obtheme.h"
-#include "obtheme.tab.h"
+#include "parser.h"
 
 int yylex(YYSTYPE *yylval, struct parser_control *pc);
 
index dcafd84..bcb8299 100644 (file)
@@ -3,7 +3,7 @@
 #include <string.h>
 #include <glib.h>
 #include "obtheme.h"
-#include "geom.h"
+#include "openbox/geom.h"
 
 static double variable_lookup(struct variable *in)
 {
index 59bf310..8cc8c71 100644 (file)
@@ -2,8 +2,8 @@
 #define __THEME_PARSE_H__
 
 #include <glib.h>
-#include "frame.h"
-#include "misc.h"
+#include "openbox/frame.h"
+#include "openbox/misc.h"
 
 #undef YY_DECL
 #define YY_DECL int obthemelex(YYSTYPE *yylval, struct parser_control *pc)
index e4e07dc..d46a83a 100644 (file)
 #include <sys/stat.h>
 #include <limits.h>
 #include <unistd.h>
-#include "frame.h"
-#include "misc.h"
-#include "render.h"
+#include "openbox/frame.h"
+#include "openbox/misc.h"
+#include "obrender/render.h"
 #include "obtheme.h"
-#include "obtheme.tab.h"
+#include "parser.h"
 
 YY_DECL;