mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-26 09:16:21 +00:00
Cleanup: gchar as gchar instead of char
Use gchar instead of char in most of the cases where gchar is intended. Reason: improve compatibility and stability. Issue #1819 Minor refactoring.
This commit is contained in:
@@ -70,7 +70,7 @@ confwin_show_form(ProfConfWin* confwin)
|
||||
win_println(window, THEME_DEFAULT, "-", "%s", value);
|
||||
}
|
||||
} else if (g_strcmp0(field->type, "hidden") != 0 && field->var) {
|
||||
char* tag = g_hash_table_lookup(confwin->form->var_to_tag, field->var);
|
||||
gchar* tag = g_hash_table_lookup(confwin->form->var_to_tag, field->var);
|
||||
_confwin_form_field(window, tag, field);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user