summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-03-28 17:33:43 +0200
committerDave Davenport <qball@gmpclient.org>2017-03-28 17:33:43 +0200
commit5259eb11bc7327074511bc83595542fe616ae1b1 (patch)
tree34efbba69c837ca923a2f8607841f78a93e354a7 /include
parent14b43523bef26208b20593533dd60786d046c469 (diff)
Merge the configuration loading into something more simple (3)
Diffstat (limited to 'include')
-rw-r--r--include/theme.h1
-rw-r--r--include/xrmoptions.h6
2 files changed, 4 insertions, 3 deletions
diff --git a/include/theme.h b/include/theme.h
index 6030b0e0..aece11ae 100644
--- a/include/theme.h
+++ b/include/theme.h
@@ -4,6 +4,7 @@
#include <cairo.h>
#include <widgets/widget.h>
#include <settings.h>
+#include "theme.h"
/** Style of text highlight */
typedef enum
diff --git a/include/xrmoptions.h b/include/xrmoptions.h
index e1c47893..4d54f1e4 100644
--- a/include/xrmoptions.h
+++ b/include/xrmoptions.h
@@ -1,6 +1,7 @@
#ifndef ROFI_XRMOPTIONS_H
#define ROFI_XRMOPTIONS_H
#include "xcb.h"
+#include "theme.h"
// Big thanks to Sean Pringle for this code.
/**
@@ -139,9 +140,8 @@ char ** config_parser_return_display_help ( unsigned int *length );
*
* Sets both the static as dynamic config option.
*
- * @param option Option to set.
- * @param value Value to set it too
+ * @param p Property to set
*/
-void config_parser_set_option ( char *option, char *value);
+void config_parse_set_property ( const Property *p);
/* @}*/
#endif