summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2000-06-12 17:35:04 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2000-06-12 17:35:04 (GMT)
commiteb3b95e2aacced2a715337e2d4a93e588d3258c1 (patch)
tree8e5365fe3936f88cabc63fdd8d338bd6836c6c77
parent93737357fcce05f46d2db771293d746ea4b79acc (diff)
downloadDoxygen-eb3b95e2aacced2a715337e2d4a93e588d3258c1.zip
Doxygen-eb3b95e2aacced2a715337e2d4a93e588d3258c1.tar.gz
Doxygen-eb3b95e2aacced2a715337e2d4a93e588d3258c1.tar.bz2
Fixed bug that prevented compiling with Qt-2.x
-rw-r--r--src/doxygen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index 23e6a17..1e857f9 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -1,6 +1,6 @@
/******************************************************************************
*
- *
+ * $Id$
*
*
* Copyright (C) 1997-2000 by Dimitri van Heesch.
@@ -4735,7 +4735,7 @@ static void copyStyleSheet()
QFileInfo cssfi(Config::htmlStyleSheet);
if (cssf.open(IO_ReadOnly))
{
- QCString destFileName = Config::htmlOutputDir+"/"+cssfi.fileName();
+ QCString destFileName = Config::htmlOutputDir+"/"+cssfi.fileName().data();
QFile df(destFileName);
if (df.open(IO_WriteOnly))
{