summaryrefslogtreecommitdiff
path: root/doc/fr
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2010-10-10 19:44:29 +0200
committerSebastien Helleu <flashcode@flashtux.org>2010-10-10 19:44:29 +0200
commitb9d6c5c5a04b2fa06306e0b626b2318bcb797d21 (patch)
tree4bf1e67019b3ff9447a61968b1e1fa38506ec10b /doc/fr
parentcbcc89cb26c2a6e7dc647cbb7cf5c67b7596c981 (diff)
downloadweechat-b9d6c5c5a04b2fa06306e0b626b2318bcb797d21.zip
Add property "keys" for hashtable_get_string (return string with list of keys)
Diffstat (limited to 'doc/fr')
-rw-r--r--doc/fr/weechat_plugin_api.fr.txt8
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/fr/weechat_plugin_api.fr.txt b/doc/fr/weechat_plugin_api.fr.txt
index 66c40db5e..3adad9aa9 100644
--- a/doc/fr/weechat_plugin_api.fr.txt
+++ b/doc/fr/weechat_plugin_api.fr.txt
@@ -3123,16 +3123,20 @@ Arguments:
*** 'pointer' : pointeur
*** 'buffer' : buffer
*** 'time' : heure
+** 'keys': chaîne avec la liste des clés (format: "clé1,clé2,clé3")
Valeur en retour :
* valeur de la propriété sous forme de chaîne
-Exemple en C :
+Exemples en C :
[source,C]
----------------------------------------
-const char *type_keys = weechat_hashtable_get_string (hashtable, "type_keys");
+weechat_printf (NULL, "les clés sont de type: %s",
+ weechat_hashtable_get_string (hashtable, "type_keys"));
+weechat_printf (NULL, "liste des clés: %s",
+ weechat_hashtable_get_string (hashtable, "keys"));
----------------------------------------
[NOTE]