From kde-commits Sat Jun 21 21:27:58 2008 From: Albert Astals Cid Date: Sat, 21 Jun 2008 21:27:58 +0000 To: kde-commits Subject: KDE/kdelibs/khtml/html Message-Id: <1214083678.356633.29586.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=121408368406535 SVN commit 822887 by aacid: if you want to add a qbytearray to another one there's no need to convert it to char * M +1 -1 html_formimpl.cpp --- trunk/KDE/kdelibs/khtml/html/html_formimpl.cpp #822886:822887 @@ -305,7 +305,7 @@ else { QByteArray hstr("--"); - hstr += m_boundary.toLatin1().constData(); + hstr += m_boundary.toLatin1(); hstr += "\r\n"; hstr += "Content-Disposition: form-data; name=\""; hstr += (*it).data();