From kde-commits Sat Sep 30 20:55:15 2006 From: Stephan Johach Date: Sat, 30 Sep 2006 20:55:15 +0000 To: kde-commits Subject: KDE/kdebase/runtime/kioslave/man Message-Id: <1159649715.479394.547.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=115964972105547 SVN commit 590789 by johach: make it compile M +3 -1 man2html.cpp --- trunk/KDE/kdebase/runtime/kioslave/man/man2html.cpp #590788:590789 @@ -736,7 +736,9 @@ QByteArray file(g, h - g + 1); file = file.trimmed(); for (int index = 0; includedirs[index]; index++) { - QByteArray str( QByteArray(includedirs[index]) + '/' + file ); + QByteArray str( includedirs[index] ); + str.append('/'); + str.append(file); if (!access(str.data(), R_OK)) { dir = includedirs[index]; break;