Emotion: Patch that correct this:

warning: Tag `DETAILS_AT_TOP' at line 46 of file Doxyfile has become obsolete.
To avoid this warning please update your configuration file using "doxygen -u"
warning: Tag `MAX_DOT_GRAPH_WIDTH' at line 137 of file Doxyfile has become obsolete.
To avoid this warning please update your configuration file using "doxygen -u"
warning: Tag `MAX_DOT_GRAPH_HEIGHT' at line 138 of file Doxyfile has become obsolete.
To avoid this warning please update your configuration file using "doxygen -u"
warning: tag INPUT: input source `emotion.dox' does not exist
warning: source emotion.dox is not a readable file or directory... skipping.
/tmp/emotion/src/lib/Emotion.h:1232: warning: missing title after \defgroup Emotion_Webcam
/tmp/emotion/src/lib/Emotion.h:819: warning: The following parameters of emotion_object_size_get(const Evas_Object *obj, int *iw, int *ih) are not documented:
 parameter 'ih'

Patch by Jérôme Pinot


SVN revision: 69824
This commit is contained in:
Vincent Torri 2012-04-01 05:26:00 +00:00
parent 760faef3b6
commit b01abfb6eb
2 changed files with 4 additions and 7 deletions

View File

@ -1,8 +1,7 @@
PROJECT_NAME = Emotion PROJECT_NAME = Emotion
PROJECT_NUMBER = @PACKAGE_VERSION@ PROJECT_NUMBER = @PACKAGE_VERSION@
OUTPUT_DIRECTORY = . OUTPUT_DIRECTORY = .
INPUT = emotion.dox \ INPUT = @top_srcdir@/src/lib \
@top_srcdir@/src/lib \
@srcdir@/examples.dox @srcdir@/examples.dox
IMAGE_PATH = img IMAGE_PATH = img
OUTPUT_LANGUAGE = English OUTPUT_LANGUAGE = English
@ -43,7 +42,6 @@ VERBATIM_HEADERS = NO
SHOW_INCLUDE_FILES = NO SHOW_INCLUDE_FILES = NO
JAVADOC_AUTOBRIEF = YES JAVADOC_AUTOBRIEF = YES
MULTILINE_CPP_IS_BRIEF = NO MULTILINE_CPP_IS_BRIEF = NO
DETAILS_AT_TOP = NO
INHERIT_DOCS = YES INHERIT_DOCS = YES
INLINE_INFO = YES INLINE_INFO = YES
SORT_MEMBER_DOCS = YES SORT_MEMBER_DOCS = YES
@ -134,8 +132,7 @@ GRAPHICAL_HIERARCHY = NO
DOT_IMAGE_FORMAT = png DOT_IMAGE_FORMAT = png
DOT_PATH = DOT_PATH =
DOTFILE_DIRS = DOTFILE_DIRS =
MAX_DOT_GRAPH_WIDTH = 512 DOT_GRAPH_MAX_NODES = 50
MAX_DOT_GRAPH_HEIGHT = 512
GENERATE_LEGEND = YES GENERATE_LEGEND = YES
DOT_CLEANUP = YES DOT_CLEANUP = YES
SEARCHENGINE = NO SEARCHENGINE = NO

View File

@ -821,7 +821,7 @@ EAPI double emotion_object_ratio_get (const Evas_Object *obj);
* *
* @param obj The object from which we are retrieving the video size. * @param obj The object from which we are retrieving the video size.
* @param iw A pointer to a variable where the width will be stored. * @param iw A pointer to a variable where the width will be stored.
* @param iw A pointer to a variable where the height will be stored. * @param ih A pointer to a variable where the height will be stored.
* *
* This function returns the reported size of the loaded video file. If a file * This function returns the reported size of the loaded video file. If a file
* that doesn't contain a video channel is loaded, then this size can be * that doesn't contain a video channel is loaded, then this size can be
@ -1229,7 +1229,7 @@ EAPI Eina_Bool emotion_object_extension_may_play_get(const char *file);
EAPI Evas_Object *emotion_object_image_get(const Evas_Object *obj); EAPI Evas_Object *emotion_object_image_get(const Evas_Object *obj);
/** /**
* @defgroup Emotion_Webcam * @defgroup Emotion_Webcam API available for accessing webcam
*/ */
typedef struct _Emotion_Webcam Emotion_Webcam; /**< Webcam description */ typedef struct _Emotion_Webcam Emotion_Webcam; /**< Webcam description */