diff options
author | adnano <me@adnano.co> | 2023-07-15 18:51:45 -0400 |
---|---|---|
committer | adnano <me@adnano.co> | 2023-07-15 18:51:45 -0400 |
commit | 554f3e7445234b5a60dd403aed9ef0db7437eb90 (patch) | |
tree | d131ed60f221f6620dcb753f0bf02428f33d1759 /main.c | |
parent | ccca01d3cd6b7cc13cd9d65896f6d577acf7eee7 (diff) | |
download | wmenu-554f3e7445234b5a60dd403aed9ef0db7437eb90.tar.gz |
pango: Remove unused format specifier
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -110,7 +110,7 @@ int render_text(struct menu_state *state, cairo_t *cairo, const char *str, int left_padding, int right_padding) { int text_width, text_height; - get_text_size(cairo, state->font, &text_width, &text_height, NULL, 1, "%s", str); + get_text_size(cairo, state->font, &text_width, &text_height, NULL, 1, str); int text_y = (state->line_height / 2.0) - (text_height / 2.0); if (background) { @@ -122,7 +122,7 @@ int render_text(struct menu_state *state, cairo_t *cairo, const char *str, cairo_move_to(cairo, x + left_padding, y + text_y); cairo_set_source_u32(cairo, foreground); - pango_printf(cairo, state->font, 1, "%s", str); + pango_printf(cairo, state->font, 1, str); return x + text_width + left_padding + right_padding; } @@ -133,7 +133,7 @@ int render_horizontal_item(struct menu_state *state, cairo_t *cairo, const char int left_padding, int right_padding) { int text_width, text_height; - get_text_size(cairo, state->font, &text_width, &text_height, NULL, 1, "%s", str); + get_text_size(cairo, state->font, &text_width, &text_height, NULL, 1, str); int text_y = (state->line_height / 2.0) - (text_height / 2.0); if (x + left_padding + text_width > width) { @@ -148,7 +148,7 @@ int render_horizontal_item(struct menu_state *state, cairo_t *cairo, const char cairo_move_to(cairo, x + left_padding, y + text_y); cairo_set_source_u32(cairo, foreground); - pango_printf(cairo, state->font, 1, "%s", str); + pango_printf(cairo, state->font, 1, str); } return x + text_width + left_padding + right_padding; @@ -160,7 +160,7 @@ void render_vertical_item(struct menu_state *state, cairo_t *cairo, const char * int left_padding) { int text_height; - get_text_size(cairo, state->font, NULL, &text_height, NULL, 1, "%s", str); + get_text_size(cairo, state->font, NULL, &text_height, NULL, 1, str); int text_y = (state->line_height / 2.0) - (text_height / 2.0); if (background) { @@ -172,7 +172,7 @@ void render_vertical_item(struct menu_state *state, cairo_t *cairo, const char * cairo_move_to(cairo, x + left_padding, y + text_y); cairo_set_source_u32(cairo, foreground); - pango_printf(cairo, state->font, 1, "%s", str); + pango_printf(cairo, state->font, 1, str); } void scroll_matches(struct menu_state *state) { |