summaryrefslogtreecommitdiffstats
path: root/addon/doxywizard/doxywizard.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-10-04 13:24:40 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-10-04 13:24:40 (GMT)
commit58d4ad3cd25569f09b31c4b80bc145477c6d61cb (patch)
tree9a71b0c23fc0d6f24fcc935bb9e02ec16a226334 /addon/doxywizard/doxywizard.cpp
parentd7d4d5c443887cc63211febe40d43f26dfe41bc0 (diff)
downloadDoxygen-58d4ad3cd25569f09b31c4b80bc145477c6d61cb.zip
Doxygen-58d4ad3cd25569f09b31c4b80bc145477c6d61cb.tar.gz
Doxygen-58d4ad3cd25569f09b31c4b80bc145477c6d61cb.tar.bz2
Bug 702265 - Generated Doxyfile differs from result of doxygen -u
See to it that the output from 'doxygen' and 'doxywizard' give the same result, difference was only in whitespace. - space after '#' was already implemented - implemented now that line endings are conform text layout (Qt 3 name: IO_Translate, Qt 4 name: QIODevice::Text) - implement no space after '=' in case of an empty string or empty string list.
Diffstat (limited to 'addon/doxywizard/doxywizard.cpp')
-rwxr-xr-xaddon/doxywizard/doxywizard.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/addon/doxywizard/doxywizard.cpp b/addon/doxywizard/doxywizard.cpp
index 492912b..4e0d1aa 100755
--- a/addon/doxywizard/doxywizard.cpp
+++ b/addon/doxywizard/doxywizard.cpp
@@ -267,7 +267,7 @@ void MainWindow::saveConfig(const QString &fileName)
{
if (fileName.isEmpty()) return;
QFile f(fileName);
- if (!f.open(QIODevice::WriteOnly))
+ if (!f.open(QIODevice::WriteOnly | QIODevice::Text ))
{
QMessageBox::warning(this,
tr("Error saving"),