From c4fdda5bd6a55f52af27130a1abac6dd20c5e09b Mon Sep 17 00:00:00 2001
From: Roberto Raggi <roberto.raggi@nokia.com>
Date: Mon, 29 Jun 2009 10:03:32 +0200
Subject: [PATCH] Compile.

---
 tests/manual/preprocessor/main.cpp | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/tests/manual/preprocessor/main.cpp b/tests/manual/preprocessor/main.cpp
index 5170bdf26ab..64de2e56f54 100644
--- a/tests/manual/preprocessor/main.cpp
+++ b/tests/manual/preprocessor/main.cpp
@@ -39,10 +39,9 @@ public:
     void addInclude(const QString &absoluteFilePath)
     { included.append(absoluteFilePath); }
 
-    virtual void sourceNeeded(QString &fileName, IncludeType mode, unsigned line)
+    virtual void sourceNeeded(QString &fileName, IncludeType mode, unsigned)
     {
-        // ### cache
-        const QString currentFile = QFile::decodeName(env->currentFile);
+        const QString currentFile = env->currentFile;
 
         if (mode == IncludeLocal) {
             const QFileInfo currentFileInfo(currentFile);
@@ -115,7 +114,7 @@ int main(int argc, char *argv[])
             client.addSystemDir(qgetenv("QTDIR") + "/include");
 
             Preprocessor preproc(&client, &env);
-            preproc.preprocess(QFile::encodeName(fn), code, /*result = */ 0);
+            preproc.preprocess(fn, code, /*result = */ 0);
             deps = client.includedFiles();
             todo += deps;
         }
-- 
GitLab