From f63b4597f78ac0145835667a1440eb82cd04954b Mon Sep 17 00:00:00 2001 From: Damien Lespiau Date: Sun, 30 Dec 2012 17:37:18 +0000 Subject: [PATCH] doc: Finish describing the arguments of cogl_error_matches() (cherry picked from commit 8f429d9ce45e3df204db0bdc0d988fd07f103282) --- cogl/cogl-error.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cogl/cogl-error.h b/cogl/cogl-error.h index 1015ca121..f58678992 100644 --- a/cogl/cogl-error.h +++ b/cogl/cogl-error.h @@ -146,8 +146,10 @@ cogl_error_copy (CoglError *error); /** * cogl_error_matches: * @error: A #CoglError thrown by the Cogl api or %NULL + * @domain: The error domain + * @code: The error code * - * Returns %TRUE if error matches domain and code, %FALSE otherwise. + * Returns %TRUE if error matches @domain and @code, %FALSE otherwise. * In particular, when error is %NULL, FALSE will be returned. * * Return value: whether the @error corresponds to the given @domain