diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2011-07-28 09:25:48 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2011-07-28 09:25:48 +0200 |
commit | 17037e32d8a6d54fd7e25c2a5fa81ea6a39cf66d (patch) | |
tree | 2445dabe69030821561a7eae1d4bbe68ea4ff871 /doc | |
parent | d41f7c31401c1eabc792c81d9450b92169339e66 (diff) | |
download | weechat-17037e32d8a6d54fd7e25c2a5fa81ea6a39cf66d.zip |
doc: fix type for arguments of hook_timer in plugin API reference
Diffstat (limited to 'doc')
-rw-r--r-- | doc/en/weechat_plugin_api.en.txt | 4 | ||||
-rw-r--r-- | doc/fr/weechat_plugin_api.fr.txt | 4 | ||||
-rw-r--r-- | doc/it/weechat_plugin_api.it.txt | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/doc/en/weechat_plugin_api.en.txt b/doc/en/weechat_plugin_api.en.txt index b38b1f70f..73073109a 100644 --- a/doc/en/weechat_plugin_api.en.txt +++ b/doc/en/weechat_plugin_api.en.txt @@ -6257,8 +6257,8 @@ Prototype: [source,C] ---------------------------------------- struct t_hook *weechat_hook_timer (long interval, - const char *align_second, - const char *max_calls, + int align_second, + int max_calls, int (*callback)(void *data, int remaining_calls), void *callback_data); diff --git a/doc/fr/weechat_plugin_api.fr.txt b/doc/fr/weechat_plugin_api.fr.txt index 23f40ba87..94b142bf0 100644 --- a/doc/fr/weechat_plugin_api.fr.txt +++ b/doc/fr/weechat_plugin_api.fr.txt @@ -6331,8 +6331,8 @@ Prototype : [source,C] ---------------------------------------- struct t_hook *weechat_hook_timer (long interval, - const char *align_second, - const char *max_calls, + int align_second, + int max_calls, int (*callback)(void *data, int remaining_calls), void *callback_data); diff --git a/doc/it/weechat_plugin_api.it.txt b/doc/it/weechat_plugin_api.it.txt index 7263a961e..b9e5ab4a8 100644 --- a/doc/it/weechat_plugin_api.it.txt +++ b/doc/it/weechat_plugin_api.it.txt @@ -6271,8 +6271,8 @@ Prototipo: [source,C] ---------------------------------------- struct t_hook *weechat_hook_timer (long interval, - const char *align_second, - const char *max_calls, + int align_second, + int max_calls, int (*callback)(void *data, int remaining_calls), void *callback_data); |