From f857855b15ed9ec32085f22ac97afab473d7f360 Mon Sep 17 00:00:00 2001 From: Seokhyun Kim Date: Fri, 29 Mar 2013 17:27:20 +0900 Subject: [PATCH] fix wrong doxygen script Change-Id: I5ffad58a8ce1acbcd0e9abaf76dbcc1c40d80e06 --- inc/FBaseLog.h | 18 +++++++++--------- inc/FBaseSysLog.h | 32 ++++++++++++++++---------------- 2 files changed, 25 insertions(+), 25 deletions(-) diff --git a/inc/FBaseLog.h b/inc/FBaseLog.h index dce4a69..9c06eeb 100644 --- a/inc/FBaseLog.h +++ b/inc/FBaseLog.h @@ -98,7 +98,7 @@ extern "C" { * The following example demonstrates how to use the AppLog macro. * * @code - * Bool + * bool * MyEngine::Init(int value) * { * AppLog("Initialization successful."); @@ -122,7 +122,7 @@ extern "C" { * The following example demonstrates how to use the AppLogDebug macro. * * @code - * Bool + * bool * MyEngine::Init(int value) * { * AppLogDebug("Invoked with value: %d", value); @@ -148,7 +148,7 @@ extern "C" { * The following example demonstrates how to use the AppLogException macro. * * @code - * Bool + * bool * MyEngine::Init(int value) * { * AppLogDebug("Invoked with value: %d", value); @@ -225,7 +225,7 @@ extern "C" { * The following example demonstrates how to use the AppLogIf macro. * * @code - * Bool + * bool * MyEngine::Init(int value) * { * AppLogIf(value !=0, "Invoked with value: %d", value); @@ -249,7 +249,7 @@ extern "C" { * The following example demonstrates how to use the AppLogDebugIf macro. * * @code - * Bool + * bool * MyEngine::Init(int value) * { * AppLogDebugIf(value !=0, "Invoked with value: %d", value); @@ -273,7 +273,7 @@ extern "C" { * The following example demonstrates how to use the AppLogExceptionIf macro. * * @code - * Bool + * bool * MyEngine::Init(int value) * { * int status; @@ -299,7 +299,7 @@ extern "C" { * The following example demonstrates how to use the AppLogTag macro. * * @code - * Bool + * bool * MyEngine::Init(int value) * { * int status; @@ -325,7 +325,7 @@ extern "C" { * The following example demonstrates how to use the AppLogDebugTag macro. * * @code - * Bool + * bool * MyEngine::Init(int value) * { * AppLogDebugTag("MyTag", "Invoked with value: %d", value); @@ -352,7 +352,7 @@ extern "C" { * The following example demonstrates how to use the AppLogExceptionTag macro. * * @code - * Bool + * bool * MyEngine::Init(int value) * { * AppLogDebug("Invoked with value: %d", value); diff --git a/inc/FBaseSysLog.h b/inc/FBaseSysLog.h index 0319d76..75f3c35 100644 --- a/inc/FBaseSysLog.h +++ b/inc/FBaseSysLog.h @@ -75,7 +75,7 @@ extern "C" { * The following example demonstrates how to use the SysLog macro. * * @code - * Bool + * bool * MyEngine::Init(int value) * { * SysLog(NID, "Initialization successful."); @@ -100,7 +100,7 @@ extern "C" { * The following example demonstrates how to use the SysLogException macro. * * @code - * Bool + * bool * MyEngine::Init(int value) * { * //... @@ -132,7 +132,7 @@ extern "C" { * The following example demonstrates how to use the SysLogTag macro. * * @code - * Bool + * bool * MyEngine::Init(int value) * { * SysLogTag(NID, "MyTag", "Initialization successful."); @@ -158,7 +158,7 @@ extern "C" { * The following example demonstrates how to use the SysLogTagException macro. * * @code - * Bool + * bool * MyEngine::Init(int value) * { * SysLogExceptionTag(NID, "MyTag", E_INVALID_ARG, "Initialization successful."); @@ -185,7 +185,7 @@ extern "C" { * The following example demonstrates how to use the SysTryLog macro. * * @code - * Bool + * bool * MyEngine::Init(int value) * { * //... @@ -220,7 +220,7 @@ extern "C" { * The following example demonstrates how to use the SysTryLogCatch macro. * * @code - * Bool + * bool * MyEngine::Init(int value) * { * //... @@ -258,7 +258,7 @@ extern "C" { * The following example demonstrates how to use the SysTryLogReturn macro. * * @code - * Bool + * bool * MyEngine::Init(int value) * { * //... @@ -296,7 +296,7 @@ extern "C" { * The following example demonstrates how to use the SysTryReturn macro. * * @code - * Bool + * bool * MyEngine::Init(int value) * { * //... @@ -334,7 +334,7 @@ extern "C" { * * @code * #define E_UNKNOWN_ERROR 1 - * Bool + * bool * MyEngine::Init(int value) * { * //... @@ -370,7 +370,7 @@ extern "C" { * The following example demonstrates how to use the SysTryReturnVoidResult macro. * * @code - * Bool + * bool * MyEngine::Init(int value) * { * //... @@ -408,7 +408,7 @@ extern "C" { * The following example demonstrates how to use the SysTryCatch macro. * * @code - * Bool + * bool * MyEngine::Init(int value) * { * //... @@ -449,7 +449,7 @@ extern "C" { * The following example demonstrates how to use the SysTryCatchLabel macro. * * @code - * Bool + * bool * MyEngine::Init(int value) * { * //... @@ -485,7 +485,7 @@ extern "C" { * The following example demonstrates how to use the SysAssert macro. * * @code - * Bool + * bool * MyEngine::Init(int value) * { * //... @@ -517,7 +517,7 @@ extern "C" { * The following example demonstrates how to use the SysAssertf macro. * * @code - * Bool + * bool * MyEngine::Init(int value) * { * //... @@ -549,7 +549,7 @@ extern "C" { * The following example demonstrates how to use the SysStaticAssert macro. * * @code - * Bool + * bool * MyEngine::Init(int value) * { * //... @@ -580,7 +580,7 @@ case condition: \ * The following example demonstrates how to use the SysPropagate macro. * * @code - * Bool + * bool * MyEngine::Init(int value) * { * //... -- 2.7.4