diff options
Diffstat (limited to 'src/qdoc/clangcodeparser.cpp')
-rw-r--r-- | src/qdoc/clangcodeparser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qdoc/clangcodeparser.cpp b/src/qdoc/clangcodeparser.cpp index 3ef696367..4cf678ee6 100644 --- a/src/qdoc/clangcodeparser.cpp +++ b/src/qdoc/clangcodeparser.cpp @@ -1022,8 +1022,8 @@ void ClangCodeParser::buildPCH() QByteArray entry; entry = "#include \""; entry += headerPath; - entry += QChar('/'); - entry += phead; + entry += '/'; + entry += phead.toLatin1(); entry += "\"\n"; tmpHeaderFile.write(entry); } |