mirror of
https://github.com/lbonn/rofi
synced 2024-11-10 14:24:27 +00:00
theme-parser: Drop lexer/ in #includes
Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
This commit is contained in:
parent
cc714f8f91
commit
4fccb3efdc
4 changed files with 6 additions and 3 deletions
|
@ -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)/
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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 *);
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue