summaryrefslogtreecommitdiffstats
path: root/source/theme.c
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-06-02 16:09:20 +0200
committerDave Davenport <qball@gmpclient.org>2017-06-02 16:09:20 +0200
commit48bf1709b6bcc316ad8019afc11d2cf8452817a0 (patch)
treec3b22e7a006df026f7bfab6411baf08e9898f766 /source/theme.c
parenteec5c6eadcc5de3c5285a5240db6da2e439d287a (diff)
Rename HL_ to ROFI_HL_ and fix box test.
Diffstat (limited to 'source/theme.c')
-rw-r--r--source/theme.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/theme.c b/source/theme.c
index fc72307a..edfc4be5 100644
--- a/source/theme.c
+++ b/source/theme.c
@@ -164,19 +164,19 @@ static void rofi_theme_print_property_index ( size_t pnl, int depth, Property *p
switch ( p->type )
{
case P_HIGHLIGHT:
- if ( p->value.highlight.style & HL_BOLD ) {
+ if ( p->value.highlight.style & ROFI_HL_BOLD ) {
printf ( "bold " );
}
- if ( p->value.highlight.style & HL_UNDERLINE ) {
+ if ( p->value.highlight.style & ROFI_HL_UNDERLINE ) {
printf ( "underline " );
}
- if ( p->value.highlight.style & HL_STRIKETHROUGH ) {
+ if ( p->value.highlight.style & ROFI_HL_STRIKETHROUGH ) {
printf ( "strikethrough " );
}
- if ( p->value.highlight.style & HL_ITALIC ) {
+ if ( p->value.highlight.style & ROFI_HL_ITALIC ) {
printf ( "italic " );
}
- if ( p->value.highlight.style & HL_COLOR ) {
+ if ( p->value.highlight.style & ROFI_HL_COLOR ) {
printf ( "rgba ( %.0f, %.0f, %.0f, %.0f %% )",
( p->value.highlight.color.red * 255.0 ),
( p->value.highlight.color.green * 255.0 ),