summaryrefslogtreecommitdiff
path: root/src/qdoc/qdocglobals.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qdoc/qdocglobals.cpp')
-rw-r--r--src/qdoc/qdocglobals.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/qdoc/qdocglobals.cpp b/src/qdoc/qdocglobals.cpp
index 181b32b9d..2e1e084ed 100644
--- a/src/qdoc/qdocglobals.cpp
+++ b/src/qdoc/qdocglobals.cpp
@@ -127,7 +127,8 @@ QStringList QDocGlobals::includesPaths()
void QDocGlobals::addIncludePath(const QString &flag, const QString &path)
{
- m_includesPaths << flag << path;
+ QString includePath = flag + path;
+ m_includesPaths << includePath;
}
QStringList &QDocGlobals::dependModules()