SVN commit 420371 by cullmann: compile and link M +3 -3 kio_man.cpp --- branches/work/kde4/kdebase/kioslave/man/kio_man.cpp #420370:420371 @@ -404,7 +404,7 @@ { m_outputBuffer.close(); data(m_outputBuffer.buffer()); - m_outputBuffer.setBuffer(QByteArray()); + m_outputBuffer.setData(QByteArray()); m_outputBuffer.open(QIODevice::WriteOnly); } } @@ -493,7 +493,7 @@ m_outputBuffer.close(); data(m_outputBuffer.buffer()); - m_outputBuffer.setBuffer(QByteArray()); + m_outputBuffer.setData(QByteArray()); // tell we are done data(QByteArray()); } @@ -517,7 +517,7 @@ * If the path name constains the string sman, assume that it's SGML and * convert it to roff format (used on Solaris). */ //QString file_mimetype = KMimeType::findByPath(QString(filename), 0, false)->name(); - if (filename.contains("sman", false)) //file_mimetype == "text/html" || ) + if (QString(filename).contains("sman", Qt::CaseInsensitive)) //file_mimetype == "text/html" || ) { myStdStream =QString::null; KProcess proc;