minor fixes

SVN revision: 44720
This commit is contained in:
Vincent Torri 2009-12-25 16:22:13 +00:00
parent c9975bc818
commit 8c14ca031e
5 changed files with 18 additions and 6 deletions

View File

@ -26,7 +26,7 @@
*/
/**
* @defgroup Eina_Main_Group Hamster
* @defgroup Eina_Hamster_Group Hamster
*
* @{
*/

View File

@ -183,3 +183,7 @@ EAPI extern Eina_Error EINA_ERROR_SAFETY_FAILED;
/**
* @}
*/
/**
* @}
*/

View File

@ -52,7 +52,7 @@ static int _eina_hamsters = -1;
*============================================================================*/
/**
* @addtogroup Eina_Main_Group Hamster
* @addtogroup Eina_Hamster_Group Hamster
*
* @brief These functions provide hamster calls.
*

View File

@ -166,7 +166,7 @@
* The log module allows the user to change the way
* eina_log_print() displays the messages. It suffices to pass to
* eina_log_print_cb_set() the function used to display the
* message. That function must be of type #Eina_log_Print_Cb. As a
* message. That function must be of type #Eina_Log_Print_Cb. As a
* custom data can be passed to that callback, powerful display
* messages can be displayed.
*
@ -871,7 +871,7 @@ eina_log_domain_parse_pending_globs(void)
*============================================================================*/
/**
* @addtogroup Eina_Log_Group log
* @addtogroup Eina_Log_Group Log
*
* @brief These functions provide log management for projects.
*
@ -1506,3 +1506,6 @@ eina_log_vprint(int domain, Eina_Log_Level level, const char *file,
LOG_UNLOCK();
}
/**
* @}
*/

View File

@ -18,7 +18,7 @@
/**
* @page tutorial_matrixsparse_page Matrix Sparse Tutorial
* @page tutorial_matrixsparse_page Sparse Matrix Tutorial
*
* to be written...
*
@ -51,6 +51,7 @@
/*============================================================================*
* Local *
*============================================================================*/
/**
* @cond LOCAL
*/
@ -770,7 +771,7 @@ _eina_matrixsparse_iterator_complete_free(Eina_Matrixsparse_Iterator_Complete *i
*============================================================================*/
/**
* @addtogroup Eina_Matrixsparse_Group Matrix Sparse
* @addtogroup Eina_Matrixsparse_Group Sparse Matrix
*
* @brief These functions provide matrix sparse management.
*
@ -1553,3 +1554,7 @@ eina_matrixsparse_iterator_complete_new(const Eina_Matrixsparse *m)
it->iterator.free = FUNC_ITERATOR_FREE(_eina_matrixsparse_iterator_complete_free);
return &it->iterator;
}
/**
* @}
*/