summaryrefslogtreecommitdiffstats
path: root/src/eclipsehelp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/eclipsehelp.cpp')
-rw-r--r--src/eclipsehelp.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/eclipsehelp.cpp b/src/eclipsehelp.cpp
index dab001a..bbb3b01 100644
--- a/src/eclipsehelp.cpp
+++ b/src/eclipsehelp.cpp
@@ -72,8 +72,7 @@ void EclipseHelp::initialize()
m_tocfile = new QFile(name);
if (!m_tocfile->open(IO_WriteOnly))
{
- err("Could not open file %s for writing\n", name.data());
- exit(1);
+ term("Could not open file %s for writing\n", name.data());
}
// -- initialize its text stream
@@ -115,7 +114,7 @@ void EclipseHelp::finalize()
QFile pluginFile(name);
if (pluginFile.open(IO_WriteOnly))
{
- QString docId = Config_getString(ECLIPSE_DOC_ID);
+ QCString docId = Config_getString(ECLIPSE_DOC_ID);
FTextStream t(&pluginFile);
t << "<plugin name=\"" << docId << "\" id=\"" << docId << "\"" << endl;
t << " version=\"1.0.0\" provider-name=\"Doxygen\">" << endl;