mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-19 21:36: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:
@@ -125,7 +125,7 @@ static char* _logging_autocomplete(ProfWin* window, const char* const input, gbo
|
||||
static char* _color_autocomplete(ProfWin* window, const char* const input, gboolean previous);
|
||||
static char* _avatar_autocomplete(ProfWin* window, const char* const input, gboolean previous);
|
||||
static char* _correction_autocomplete(ProfWin* window, const char* const input, gboolean previous);
|
||||
static char* _correct_autocomplete(ProfWin* window, const char* const input, gboolean previous);
|
||||
static gchar* _correct_autocomplete(ProfWin* window, const char* const input, gboolean previous);
|
||||
static char* _software_autocomplete(ProfWin* window, const char* const input, gboolean previous);
|
||||
static char* _url_autocomplete(ProfWin* window, const char* const input, gboolean previous);
|
||||
static char* _executable_autocomplete(ProfWin* window, const char* const input, gboolean previous);
|
||||
@@ -4291,17 +4291,15 @@ _avatar_autocomplete(ProfWin* window, const char* const input, gboolean previous
|
||||
static char*
|
||||
_correction_autocomplete(ProfWin* window, const char* const input, gboolean previous)
|
||||
{
|
||||
char* result = NULL;
|
||||
|
||||
result = autocomplete_param_with_ac(input, "/correction", correction_ac, TRUE, previous);
|
||||
char* result = autocomplete_param_with_ac(input, "/correction", correction_ac, TRUE, previous);
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
static char*
|
||||
static gchar*
|
||||
_correct_autocomplete(ProfWin* window, const char* const input, gboolean previous)
|
||||
{
|
||||
char* result = g_strdup_printf("/correct %s", win_get_last_sent_message(window));
|
||||
gchar* result = g_strdup_printf("/correct %s", win_get_last_sent_message(window));
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -9703,9 +9703,8 @@ cmd_executable_vcard_photo(ProfWin* window, const char* const command, gchar** a
|
||||
cons_show("`vcard photo open` command set to invoke '%s'", args[2]);
|
||||
} else if (g_strcmp0(args[1], "default") == 0) {
|
||||
prefs_set_string(PREF_VCARD_PHOTO_CMD, NULL);
|
||||
char* cmd = prefs_get_string(PREF_VCARD_PHOTO_CMD);
|
||||
auto_gchar gchar* cmd = prefs_get_string(PREF_VCARD_PHOTO_CMD);
|
||||
cons_show("`vcard photo open` command set to invoke '%s' (default)", cmd);
|
||||
g_free(cmd);
|
||||
} else {
|
||||
cons_bad_cmd_usage(command);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user