summaryrefslogtreecommitdiff
path: root/doc/it
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2010-10-17 10:39:51 +0200
committerSebastien Helleu <flashcode@flashtux.org>2010-10-17 10:39:51 +0200
commitebf94445b9a49318122392d7fc7b098027706d97 (patch)
tree325f5a9a56fb4607b0531a3501195059b5736c97 /doc/it
parenteff0f9abdb53b0c0e1c2060a6f9598c51347e1bb (diff)
downloadweechat-ebf94445b9a49318122392d7fc7b098027706d97.zip
Use const void * for keys and values in some hashtable functions
Diffstat (limited to 'doc/it')
-rw-r--r--doc/it/weechat_plugin_api.it.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/it/weechat_plugin_api.it.txt b/doc/it/weechat_plugin_api.it.txt
index 1ccd4d5c9..cd7b45bf8 100644
--- a/doc/it/weechat_plugin_api.it.txt
+++ b/doc/it/weechat_plugin_api.it.txt
@@ -2919,8 +2919,8 @@ Prototipo:
[source,C]
----------------------------------------
int weechat_hashtable_set_with_size (struct t_hashtable *hashtable,
- void *key, int key_size,
- void *value, int value_size);
+ const void *key, int key_size,
+ const void *value, int value_size);
----------------------------------------
Arguments:
@@ -2960,7 +2960,7 @@ Prototipo:
[source,C]
----------------------------------------
int weechat_hashtable_set (struct t_hashtable *hashtable,
- void *key, void *value);
+ const void *key, const void *value);
----------------------------------------
Argomenti: