Commit 24106371 authored by dimitri's avatar dimitri

Fixed bug that prevented compiling with Qt-2.x

parent 975a88d4
/******************************************************************************
*
*
* $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))
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment