From 6ce3dfc3e34662dfcf6b84dc63b5ea09d741644d Mon Sep 17 00:00:00 2001 From: Vincent Torri Date: Sun, 1 Apr 2012 05:33:25 +0000 Subject: [PATCH] Ethumb: Patch that fixes: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit warning: Tag `DETAILS_AT_TOP' at line 163 of file Doxyfile has become obsolete. To avoid this warning please update your configuration file using "doxygen -u" /tmp/ethumb/src/lib/client/ethumb_client.c:1597: warning: argument 'f' of command @param is not found in the argument list of ethumb_client_orientation_set(Ethumb_Client *client, Ethumb_Thumb_Orientation o) /tmp/ethumb/src/lib/client/ethumb_client.c:1597: warning: The following parameters of ethumb_client_orientation_set(Ethumb_Client *client, Ethumb_Thumb_Orientation o) are not documented: parameter 'o' /tmp/ethumb/src/lib/client/ethumb_client.c:1752: warning: return type of member ethumb_client_frame_set is not documented Patch by Jérôme Pinot SVN revision: 69826 --- legacy/ethumb/doc/Doxyfile.in | 7 ------- legacy/ethumb/src/lib/client/ethumb_client.c | 4 +++- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/legacy/ethumb/doc/Doxyfile.in b/legacy/ethumb/doc/Doxyfile.in index d3b01b55f8..5e32ca8a1e 100644 --- a/legacy/ethumb/doc/Doxyfile.in +++ b/legacy/ethumb/doc/Doxyfile.in @@ -155,13 +155,6 @@ QT_AUTOBRIEF = NO MULTILINE_CPP_IS_BRIEF = NO -# If the DETAILS_AT_TOP tag is set to YES then Doxygen -# will output the detailed description near the top, like JavaDoc. -# If set to NO, the detailed description appears after the member -# documentation. - -DETAILS_AT_TOP = NO - # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented # member inherits the documentation from any documented member that it # re-implements. diff --git a/legacy/ethumb/src/lib/client/ethumb_client.c b/legacy/ethumb/src/lib/client/ethumb_client.c index d5135e8e01..46ed3da7c9 100644 --- a/legacy/ethumb/src/lib/client/ethumb_client.c +++ b/legacy/ethumb/src/lib/client/ethumb_client.c @@ -1603,7 +1603,7 @@ ethumb_client_aspect_get(const Ethumb_Client *client) * @param client the client instance to use. Must @b not be @c * NULL. May be pending connected (can be called before @c * connected_cb) - * @param f format identifier to use, either #ETHUMB_THUMB_ORIENT_NONE (0), + * @param o format identifier to use, either #ETHUMB_THUMB_ORIENT_NONE (0), * #ETHUMB_THUMB_ROTATE_90_CW (1), #ETHUMB_THUMB_ROTATE_180 (2), * #ETHUMB_THUMB_ROTATE_90_CCW (3), #ETHUMB_THUMB_FLIP_HORIZONTAL (4), * #ETHUMB_THUMB_FLIP_VERTICAL (5), #ETHUMB_THUMB_FLIP_TRANSPOSE (6), @@ -1764,6 +1764,8 @@ ethumb_client_compress_get(const Ethumb_Client *client) * @param file file path to edje. * @param group group inside edje to use. * @param swallow name of swallow part. + * + * @return @c EINA_TRUE on success, @c EINA_FALSE on failure. */ EAPI Eina_Bool ethumb_client_frame_set(Ethumb_Client *client, const char *file, const char *group, const char *swallow)