summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/sal/log-areas.dox4
-rw-r--r--l10ntools/source/helpmerge.cxx9
2 files changed, 9 insertions, 4 deletions
diff --git a/include/sal/log-areas.dox b/include/sal/log-areas.dox
index 95ec6f1914c2..a78abda434c1 100644
--- a/include/sal/log-areas.dox
+++ b/include/sal/log-areas.dox
@@ -176,6 +176,10 @@ certain functionality.
@li @c jfw.level1
@li @c jfw.level2
+@section l10ntools
+
+@li @c l10ntools
+
@section Math
@li @c starmath
diff --git a/l10ntools/source/helpmerge.cxx b/l10ntools/source/helpmerge.cxx
index d79dfaea7fa2..161362e1feab 100644
--- a/l10ntools/source/helpmerge.cxx
+++ b/l10ntools/source/helpmerge.cxx
@@ -263,11 +263,12 @@ void HelpParser::ProcessHelp( LangHashMap* aLangHM , const OString& sCur , ResDa
aLangHM->erase( sCur );
}
}
- else if( pResData == NULL )
+ else if( pResData )
{
- fprintf(stdout,"Can't find GID=%s LID=%s TYP=%s\n",
- pResData->sGId.getStr(), pResData->sId.getStr(),
- pResData->sResTyp.getStr());
+ SAL_WARN(
+ "l10ntools",
+ "Can't find GID=" << pResData->sGId.getStr() << " LID="
+ << pResData->sId.getStr() << " TYP=" << pResData->sResTyp.getStr() << "\n");
}
pXMLElement->ChangeLanguageTag(
OStringToOUString(sCur, RTL_TEXTENCODING_ASCII_US));