diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2011-08-02 13:24:53 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2011-08-02 13:24:53 +0200 |
commit | cbdf4a4ae1a4ae2006215934b2466713cf2d6efa (patch) | |
tree | 3e3d41715846d9942c17baedf18fb91e4844a4e5 /doc | |
parent | 7ef99737d07820e60f03f094a8d40de1469cc8b8 (diff) | |
download | weechat-cbdf4a4ae1a4ae2006215934b2466713cf2d6efa.zip |
core: remove "const" for first argument of function utf8_normalize
Diffstat (limited to 'doc')
-rw-r--r-- | doc/en/weechat_plugin_api.en.txt | 2 | ||||
-rw-r--r-- | doc/fr/weechat_plugin_api.fr.txt | 2 | ||||
-rw-r--r-- | doc/it/weechat_plugin_api.it.txt | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/en/weechat_plugin_api.en.txt b/doc/en/weechat_plugin_api.en.txt index 159df6a8b..6806bcea6 100644 --- a/doc/en/weechat_plugin_api.en.txt +++ b/doc/en/weechat_plugin_api.en.txt @@ -1552,7 +1552,7 @@ Prototype: [source,C] ---------------------------------------- -void weechat_utf8_normalize (const char *string, char replacement); +void weechat_utf8_normalize (char *string, char replacement); ---------------------------------------- Arguments: diff --git a/doc/fr/weechat_plugin_api.fr.txt b/doc/fr/weechat_plugin_api.fr.txt index 6605a2ff4..931d3befb 100644 --- a/doc/fr/weechat_plugin_api.fr.txt +++ b/doc/fr/weechat_plugin_api.fr.txt @@ -1571,7 +1571,7 @@ Prototype : [source,C] ---------------------------------------- -void weechat_utf8_normalize (const char *string, char replacement); +void weechat_utf8_normalize (char *string, char replacement); ---------------------------------------- Paramètres : diff --git a/doc/it/weechat_plugin_api.it.txt b/doc/it/weechat_plugin_api.it.txt index aff4db708..a83b1f754 100644 --- a/doc/it/weechat_plugin_api.it.txt +++ b/doc/it/weechat_plugin_api.it.txt @@ -1531,7 +1531,7 @@ Prototipo: [source,C] ---------------------------------------- -void weechat_utf8_normalize (const char *string, char replacement); +void weechat_utf8_normalize (char *string, char replacement); ---------------------------------------- Argomenti: |