Symbian buildfix, forgot that this is how we worked around it in "base/functional.h"

This commit is contained in:
Henrik Rydgard 2015-07-04 11:01:34 +02:00
parent 0f8a969284
commit c02c2c3417

View File

@ -125,7 +125,7 @@ void HttpImageFileView::DownloadCompletedCallback(http::Download &download) {
void HttpImageFileView::Draw(UIContext &dc) {
if (!texture_ && !textureFailed_ && !path_.empty() && !download_) {
download_ = downloader_->StartDownloadWithCallback(path_, "", std::bind(&HttpImageFileView::DownloadCompletedCallback, this, std::placeholders::_1));
download_ = downloader_->StartDownloadWithCallback(path_, "", std::bind(&HttpImageFileView::DownloadCompletedCallback, this, placeholder::_1));
download_->SetHidden(true);
}