Revert "add const qualifier to the first arg of TextJoin (#5166)"

This reverts commit 4e8d08523f.
This commit is contained in:
Ray
2025-09-02 19:00:22 +02:00
parent 4e8d08523f
commit 1fa3c15942
6 changed files with 6 additions and 6 deletions

View File

@ -9754,7 +9754,7 @@
"returnType": "char *",
"params": [
{
"type": "const char **",
"type": "char **",
"name": "textList"
},
{

View File

@ -6933,7 +6933,7 @@ return {
description = "Join text strings with delimiter",
returnType = "char *",
params = {
{type = "const char **", name = "textList"},
{type = "char **", name = "textList"},
{type = "int", name = "count"},
{type = "const char *", name = "delimiter"}
}

View File

@ -3734,7 +3734,7 @@ Function 434: TextJoin() (3 input parameters)
Name: TextJoin
Return type: char *
Description: Join text strings with delimiter
Param[1]: textList (type: const char **)
Param[1]: textList (type: char **)
Param[2]: count (type: int)
Param[3]: delimiter (type: const char *)
Function 435: TextSplit() (3 input parameters)

View File

@ -2474,7 +2474,7 @@
<Param type="int" name="position" desc="" />
</Function>
<Function name="TextJoin" retType="char *" paramCount="3" desc="Join text strings with delimiter">
<Param type="const char **" name="textList" desc="" />
<Param type="char **" name="textList" desc="" />
<Param type="int" name="count" desc="" />
<Param type="const char *" name="delimiter" desc="" />
</Function>