summaryrefslogtreecommitdiffstats
path: root/src/code.l
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2012-11-18 21:43:28 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2012-11-18 21:43:28 (GMT)
commit1a68946cfa3e3ee749a683fdabc93e6b5311adeb (patch)
tree94365b932426de715b3a479094b7056e0c4f878b /src/code.l
parent9c9313827b29876de43ad5305fd7ac162013359c (diff)
downloadDoxygen-1a68946cfa3e3ee749a683fdabc93e6b5311adeb.zip
Doxygen-1a68946cfa3e3ee749a683fdabc93e6b5311adeb.tar.gz
Doxygen-1a68946cfa3e3ee749a683fdabc93e6b5311adeb.tar.bz2
Release-1.8.2-20121118
Diffstat (limited to 'src/code.l')
-rw-r--r--src/code.l9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/code.l b/src/code.l
index 9930f8a..337f400 100644
--- a/src/code.l
+++ b/src/code.l
@@ -26,7 +26,6 @@
#include <qregexp.h>
#include <qdir.h>
-#include "qtbc.h"
#include "entry.h"
#include "doxygen.h"
#include "message.h"
@@ -35,6 +34,12 @@
#include "membername.h"
#include "searchindex.h"
#include "arguments.h"
+#include "config.h"
+#include "groupdef.h"
+#include "classlist.h"
+#include "filedef.h"
+#include "filename.h"
+#include "namespacedef.h"
#define YY_NEVER_INTERACTIVE 1
@@ -2003,7 +2008,7 @@ RAWEND ")"[^ \t\(\)\\]{0,16}\"
if (ambig) // multiple input files match the name
{
//printf("===== yes %s is ambiguous\n",yytext);
- QCString name = convertToQCString(QDir::cleanDirPath(yytext));
+ QCString name = QDir::cleanDirPath(yytext).utf8();
if (!name.isEmpty() && g_sourceFileDef)
{
FileName *fn = Doxygen::inputNameDict->find(name);