summaryrefslogtreecommitdiffstats
path: root/src/htmlhelp.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2019-11-22 13:56:50 (GMT)
committeralbert-github <albert.tests@gmail.com>2019-11-22 13:56:50 (GMT)
commit146bec22e9ff91e8274becd719149f7ab9c7cfb9 (patch)
treecf306ab8fce7c29a7fc8db53f0a16d55120a2507 /src/htmlhelp.cpp
parente7d47ec23ba1b109754d6e47b1eb4d341efc3b36 (diff)
downloadDoxygen-146bec22e9ff91e8274becd719149f7ab9c7cfb9.zip
Doxygen-146bec22e9ff91e8274becd719149f7ab9c7cfb9.tar.gz
Doxygen-146bec22e9ff91e8274becd719149f7ab9c7cfb9.tar.bz2
Better termination message
In case a `WARN_LOGFILE` is used it in this file no clear whether doxygen finished correctly or exited beforehand in case a fatal error. Now a 'Exiting...' is also given in the warning log file in case an error is a fatal error.
Diffstat (limited to 'src/htmlhelp.cpp')
-rw-r--r--src/htmlhelp.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/htmlhelp.cpp b/src/htmlhelp.cpp
index c514102..6101984 100644
--- a/src/htmlhelp.cpp
+++ b/src/htmlhelp.cpp
@@ -308,8 +308,7 @@ void HtmlHelp::initialize()
m_fromUtf8 = portable_iconv_open(str,"UTF-8");
if (m_fromUtf8==(void *)(-1))
{
- err("unsupported character conversion for CHM_INDEX_ENCODING: '%s'->'UTF-8'\n", str);
- exit(1);
+ term(1,"unsupported character conversion for CHM_INDEX_ENCODING: '%s'->'UTF-8'\n", str);
}
/* open the contents file */
@@ -317,8 +316,7 @@ void HtmlHelp::initialize()
cf = new QFile(fName);
if (!cf->open(IO_WriteOnly))
{
- err("Could not open file %s for writing\n",fName.data());
- exit(1);
+ term(1,"Could not open file %s for writing\n",fName.data());
}
/* Write the header of the contents file */
cts.setDevice(cf);
@@ -334,8 +332,7 @@ void HtmlHelp::initialize()
kf = new QFile(fName);
if (!kf->open(IO_WriteOnly))
{
- err("Could not open file %s for writing\n",fName.data());
- exit(1);
+ term(1,"Could not open file %s for writing\n",fName.data());
}
/* Write the header of the contents file */
kts.setDevice(kf);