Fix some more char* -> gchar*.

Signed-off-by: Steffen Jaeckel <jaeckel-floss@eyet-services.de>
This commit is contained in:
Steffen Jaeckel
2023-07-27 12:38:30 +02:00
parent 8618203988
commit 5657aac33d
18 changed files with 96 additions and 120 deletions

View File

@@ -58,10 +58,10 @@ xmlwin_show(ProfXMLWin* xmlwin, const char* const msg)
}
}
char*
gchar*
xmlwin_get_string(ProfXMLWin* xmlwin)
{
assert(xmlwin != NULL);
return strdup("XML console");
return g_strdup("XML console");
}