Fix documentation of log handlers.

This commit is contained in:
Michael Jumper 2012-03-13 15:54:55 -07:00
parent 7f293df34c
commit a5fdb711c5

View File

@ -344,9 +344,7 @@ struct guac_client {
* *
* void function_of_daemon() { * void function_of_daemon() {
* *
* guac_client* client = [client from guac_client_plugin_get_client()]; * guac_client* client = [pass log_handler to guac_client_plugin_get_client()];
*
* client->log_info_handler = log_handler;
* *
* } * }
* @endcode * @endcode
@ -371,9 +369,7 @@ struct guac_client {
* *
* void function_of_daemon() { * void function_of_daemon() {
* *
* guac_client* client = [client from guac_client_plugin_get_client()]; * guac_client* client = [pass log_handler to guac_client_plugin_get_client()];
*
* client->log_error_handler = log_handler;
* *
* } * }
* @endcode * @endcode