summaryrefslogtreecommitdiffstats
path: root/src/qdoc/config.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qdoc/config.cpp')
-rw-r--r--src/qdoc/config.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/qdoc/config.cpp b/src/qdoc/config.cpp
index f6df0823b..b8cf0f17d 100644
--- a/src/qdoc/config.cpp
+++ b/src/qdoc/config.cpp
@@ -32,6 +32,7 @@
#include "config.h"
#include "generator.h"
+#include "loggingcategory.h"
#include <QtCore/qdebug.h>
#include <QtCore/qdir.h>
@@ -391,8 +392,11 @@ void Config::processCommandLineOptions(const QStringList &args)
Generator::setQDocPass(Generator::Generate);
if (m_parser.isSet(m_parser.singleExecOption))
Generator::setSingleExec();
- if (m_parser.isSet(m_parser.writeQaPagesOption))
+ if (m_parser.isSet(m_parser.writeQaPagesOption)) {
Generator::setWriteQaPages();
+ qCWarning(lcQdoc,
+ "The QA pages option for QDoc is deprecated and will be removed in Qt 6.");
+ }
if (m_parser.isSet(m_parser.logProgressOption))
Location::startLoggingProgress();
if (m_parser.isSet(m_parser.timestampsOption))