1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2025-01-13 11:15:27 +00:00

X11 cleanup: Some more obvious BUILD_X11 -> BUILD_GUI

This commit is contained in:
François Revol 2022-10-13 23:21:32 +02:00 committed by Brenden Matthews
parent 7bbf948fc3
commit 990c8277a5
2 changed files with 3 additions and 3 deletions

View File

@ -336,7 +336,7 @@ void draw_stuff();
int percent_print(char *, int, unsigned);
void human_readable(long long, char *, int);
#ifdef BUILD_X11
#ifdef BUILD_GUI
/* UTF-8 */
extern conky::simple_config_setting<bool> utf8_mode;

View File

@ -51,9 +51,9 @@ inline int scroll_character_length(char c) {
return len;
}
#else /* BUILD_X11 */
#else /* BUILD_GUI */
(void)c;
#endif /* BUILD_X11 */
#endif /* BUILD_GUI */
return 1;
}