Replaced the no longer existing HttpResponse::writeText with HttpResponse::write.

This commit is contained in:
Luis Ángel San Martín
2016-06-22 20:07:50 +02:00
parent 0b9e840bf0
commit d94f9201ee
10 changed files with 20 additions and 21 deletions

View File

@ -316,6 +316,5 @@ void FolderController::service(HttpRequest& request, HttpResponse& response)
t.setVariable("page",QString("%1").arg(page+1));
t.setVariable("pages",QString("%1").arg(numPages));
response.writeText(t, true);
response.write(t.toUtf8(), true);
}