From 92f9149ecf34dd1a7f19204ae7aff39c08dacc93 Mon Sep 17 00:00:00 2001 From: albert-github Date: Thu, 17 Dec 2020 10:50:41 +0100 Subject: Show configuration warnings unconditionally in the doxywizard Show the configuration warnings in the doxywizard unconditionally so there is no need to use the `--debug` option --- addon/doxywizard/config_msg.cpp | 49 +++++++++-------------------------------- 1 file changed, 11 insertions(+), 38 deletions(-) diff --git a/addon/doxywizard/config_msg.cpp b/addon/doxywizard/config_msg.cpp index f30e677..fc84206 100644 --- a/addon/doxywizard/config_msg.cpp +++ b/addon/doxywizard/config_msg.cpp @@ -12,16 +12,9 @@ void config_err(const char *fmt, ...) msg.append(QString::fromLatin1(fmt)); va_list args; va_start(args, fmt); - if (DoxygenWizard::debugFlag) - { - char debugOut[1000]; // this size should be sufficient - vsnprintf(debugOut, 1000,qPrintable(msg), args); - MainWindow::instance().outputLogText(QString::fromLatin1(debugOut)); - } - else - { - vfprintf(stderr, qPrintable(msg), args); - } + char debugOut[1000]; // this size should be sufficient + vsnprintf(debugOut, 1000,qPrintable(msg), args); + MainWindow::instance().outputLogText(QString::fromLatin1(debugOut)); va_end(args); } @@ -32,16 +25,9 @@ void config_term(const char *fmt, ...) msg.append(QString::fromLatin1(fmt)); va_list args; va_start(args, fmt); - if (DoxygenWizard::debugFlag) - { - char debugOut[1000]; // this size should be sufficient - vsnprintf(debugOut, 1000,qPrintable(msg), args); - MainWindow::instance().outputLogText(QString::fromLatin1(debugOut)); - } - else - { - vfprintf(stderr, qPrintable(msg), args); - } + char debugOut[1000]; // this size should be sufficient + vsnprintf(debugOut, 1000,qPrintable(msg), args); + MainWindow::instance().outputLogText(QString::fromLatin1(debugOut)); va_end(args); exit(1); } @@ -53,31 +39,18 @@ void config_warn(const char *fmt, ...) msg.append(QString::fromLatin1(fmt)); va_list args; va_start(args, fmt); - if (DoxygenWizard::debugFlag) - { - char debugOut[1000]; - vsnprintf(debugOut, 1000,qPrintable(msg), args); - MainWindow::instance().outputLogText(QString::fromLatin1(debugOut)); - } - else - { - vfprintf(stderr, qPrintable(msg), args); - } + char debugOut[1000]; + vsnprintf(debugOut, 1000,qPrintable(msg), args); + MainWindow::instance().outputLogText(QString::fromLatin1(debugOut)); va_end(args); } void config_open() { - if (DoxygenWizard::debugFlag) - { - MainWindow::instance().outputLogStart(); - } + MainWindow::instance().outputLogStart(); } void config_finish() { - if (DoxygenWizard::debugFlag) - { - MainWindow::instance().outputLogFinish(); - } + MainWindow::instance().outputLogFinish(); } -- cgit v0.12