theme-parser: Drop lexer/ in #includes

Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
This commit is contained in:
Quentin Glidic 2017-05-04 13:29:11 +02:00
parent cc714f8f91
commit 4fccb3efdc
No known key found for this signature in database
GPG key ID: AC203F96E2C34BB7
4 changed files with 6 additions and 3 deletions

View file

@ -118,6 +118,7 @@ rofi_CFLAGS=\
$(cairo_CFLAGS)\
-DMANPAGE_PATH="\"$(mandir)/\""\
-I$(top_srcdir)/include/\
-I$(top_srcdir)/lexer/\
-I$(top_srcdir)/config/\
-I$(top_builddir)/\
-Werror=missing-prototypes\
@ -267,6 +268,7 @@ textbox_test_CFLAGS=\
-DPLUGIN_PATH=\"${libdir}/rofi\"\
-DTHEME_DIR=\"$(themedir)\"\
-I$(top_srcdir)/include/\
-I$(top_srcdir)/lexer/\
-I$(top_srcdir)/config/\
-I$(top_builddir)/
@ -412,6 +414,7 @@ helper_test_CFLAGS=\
-DPLUGIN_PATH=\"${libdir}/rofi\"\
-DTHEME_DIR=\"$(themedir)\"\
-I$(top_srcdir)/include/\
-I$(top_srcdir)/lexer/\
-I$(top_srcdir)/config/\
-I$(top_builddir)/

View file

@ -39,7 +39,7 @@
#include "rofi.h"
#include "theme.h"
#include "lexer/theme-parser.h"
#include "theme-parser.h"
#define LOG_DOMAIN "Parser"
int last_state = 0;

View file

@ -70,7 +70,7 @@ typedef struct YYLTYPE {
#include <stdlib.h>
#include <glib.h>
#include "lexer/theme-parser.h"
#include "theme-parser.h"
ThemeWidget *rofi_theme = NULL;
void yyerror(YYLTYPE *yylloc, const char *what, const char* s);
int yylex (YYSTYPE *, YYLTYPE *);

View file

@ -32,7 +32,7 @@
#include <errno.h>
#include <string.h>
#include "theme.h"
#include "lexer/theme-parser.h"
#include "theme-parser.h"
#include "helper.h"
#include "settings.h"
#include "widgets/textbox.h"