diff options
author | pommicket <pommicket@gmail.com> | 2023-01-01 23:38:51 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-01-01 23:38:51 -0500 |
commit | 8c16344d5279eef6ed6ad18d4de7e8a2a5bf2f98 (patch) | |
tree | e56a9102b9317b51ace48ce0cba37d5397d6105b /ide-autocomplete.c | |
parent | 94b241351c7418c2f6a32cc01b889bc48478c50d (diff) |
char const => const char
Diffstat (limited to 'ide-autocomplete.c')
-rw-r--r-- | ide-autocomplete.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ide-autocomplete.c b/ide-autocomplete.c index 1b38816..bec2112 100644 --- a/ide-autocomplete.c +++ b/ide-autocomplete.c @@ -347,9 +347,9 @@ static void autocomplete_frame(Ted *ted) { TextBuffer *buffer = ted->active_buffer; Font *font = ted->font; float char_height = text_font_char_height(font); - Settings const *settings = buffer_settings(buffer); - u32 const *colors = settings->colors; - float const padding = settings->padding; + const Settings *settings = buffer_settings(buffer); + const u32 *colors = settings->colors; + const float padding = settings->padding; autocomplete_find_completions(ted, TRIGGER_INCOMPLETE); |