From c02c2c34170ea55a2dd51c79c6931d988a8a1e5e Mon Sep 17 00:00:00 2001 From: Henrik Rydgard Date: Sat, 4 Jul 2015 11:01:34 +0200 Subject: [PATCH] Symbian buildfix, forgot that this is how we worked around it in "base/functional.h" --- UI/Store.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/Store.cpp b/UI/Store.cpp index e7825b3dfe..1ea96cb362 100644 --- a/UI/Store.cpp +++ b/UI/Store.cpp @@ -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); }