diff --git a/indexer/classificator.cpp b/indexer/classificator.cpp index 642ddfdc38..1a7898687f 100644 --- a/indexer/classificator.cpp +++ b/indexer/classificator.cpp @@ -143,7 +143,7 @@ void ClassifObject::VisLoadPolicy::Start(size_t i) void ClassifObject::Sort() { sort(m_objs.begin(), m_objs.end(), less_name_t()); - for_each(m_objs.begin(), m_objs.end(), boost::bind(&ClassifObject::Sort, _1)); + for_each(m_objs.begin(), m_objs.end(), bind(&ClassifObject::Sort, _1)); } void ClassifObject::Swap(ClassifObject & r) diff --git a/map/framework.hpp b/map/framework.hpp index 746a34070e..239e4fb79f 100644 --- a/map/framework.hpp +++ b/map/framework.hpp @@ -118,7 +118,7 @@ class FrameWork void AddRedrawCommandSure() { - m_renderQueue.AddCommand(boost::bind(&this_type::PaintImpl, this, _1, _2, _3, _4), m_navigator.Screen()); + m_renderQueue.AddCommand(bind(&this_type::PaintImpl, this, _1, _2, _3, _4), m_navigator.Screen()); } void AddRedrawCommand() @@ -208,7 +208,7 @@ public: if (!fin) break; m_navigator.SetFromRect(m2::RectD(x0, y0, x1, y1)); - m_renderQueue.AddBenchmarkCommand(boost::bind(&this_type::PaintImpl, this, _1, _2, _3, _4), m_navigator.Screen()); + m_renderQueue.AddBenchmarkCommand(bind(&this_type::PaintImpl, this, _1, _2, _3, _4), m_navigator.Screen()); m_benchmarks.push_back(make_pair(name, m2::RectD(x0, y0, x1, y1))); } Invalidate(); @@ -230,8 +230,8 @@ public: m_model.InitClassificator(); // initializes model with locally downloaded maps - storage.Init( boost::bind(&FrameWork::AddMap, this, _1), - boost::bind(&FrameWork::RemoveMap, this, _1)); + storage.Init(bind(&FrameWork::AddMap, this, _1), + bind(&FrameWork::RemoveMap, this, _1)); } bool IsEmptyModel() diff --git a/platform/platform.hpp b/platform/platform.hpp index ef753bb1d5..d98d7ead9a 100644 --- a/platform/platform.hpp +++ b/platform/platform.hpp @@ -28,10 +28,10 @@ public: /// Throws FileAbsentException /// @param[in] file just file name which we want to read - /// @param[out] fullPath fully resolved path including file name - /// @return false if file is absent + /// @return fullPath fully resolved path including file name virtual string ReadPathForFile(char const * file) const = 0; /// Throws FileAbsentException + /// @return fullPath fully resolved path including file name string ReadPathForFile(string const & file) const { return ReadPathForFile(file.c_str()); diff --git a/platform/platform_tests/download_test.cpp b/platform/platform_tests/download_test.cpp index 2b37092f68..3d0e77485a 100644 --- a/platform/platform_tests/download_test.cpp +++ b/platform/platform_tests/download_test.cpp @@ -96,8 +96,8 @@ UNIT_TEST(SingleDownload) FileWriter::DeleteFile(TEST_FILE_NAME1); gMgr.DownloadFile(TEST_FILE_URL1, TEST_FILE_NAME1, - boost::bind(&DlObserver::OnDownloadFinished, &observer, _1, _2), - boost::bind(&DlObserver::OnDownloadProgress, &observer, _1, _2)); + bind(&DlObserver::OnDownloadFinished, &observer, _1, _2), + bind(&DlObserver::OnDownloadProgress, &observer, _1, _2)); WAIT_FOR_ASYNC_DOWNLOAD; TEST_EQUAL( observer.m_result[0], EHttpDownloadOk, ("Do you have internet connection?") ); TEST( gPlatform.IsFileExists(TEST_FILE_NAME1), () ); @@ -113,14 +113,14 @@ UNIT_TEST(MultiDownload) FileWriter::DeleteFile(TEST_FILE_NAME2); FileWriter::DeleteFile(TEST_FILE_NAME3); gMgr.DownloadFile(TEST_FILE_URL1, TEST_FILE_NAME1, - boost::bind(&DlObserver::OnDownloadFinished, &observer, _1, _2), - boost::bind(&DlObserver::OnDownloadProgress, &observer, _1, _2)); + bind(&DlObserver::OnDownloadFinished, &observer, _1, _2), + bind(&DlObserver::OnDownloadProgress, &observer, _1, _2)); gMgr.DownloadFile(TEST_FILE_URL2, TEST_FILE_NAME2, - boost::bind(&DlObserver::OnDownloadFinished, &observer, _1, _2), - boost::bind(&DlObserver::OnDownloadProgress, &observer, _1, _2)); + bind(&DlObserver::OnDownloadFinished, &observer, _1, _2), + bind(&DlObserver::OnDownloadProgress, &observer, _1, _2)); gMgr.DownloadFile(TEST_FILE_URL3, TEST_FILE_NAME3, - boost::bind(&DlObserver::OnDownloadFinished, &observer, _1, _2), - boost::bind(&DlObserver::OnDownloadProgress, &observer, _1, _2)); + bind(&DlObserver::OnDownloadFinished, &observer, _1, _2), + bind(&DlObserver::OnDownloadProgress, &observer, _1, _2)); WAIT_FOR_ASYNC_DOWNLOAD; TEST_EQUAL( observer.m_result[0], EHttpDownloadOk, ("Do you have internet connection?") ); @@ -144,8 +144,8 @@ UNIT_TEST(InvalidUrl) observer.m_result[0] = EHttpDownloadOk; gMgr.DownloadFile(TEST_INVALID_URL, TEST_FILE_NAME1, - boost::bind(&DlObserver::OnDownloadFinished, &observer, _1, _2), - boost::bind(&DlObserver::OnDownloadProgress, &observer, _1, _2)); + bind(&DlObserver::OnDownloadFinished, &observer, _1, _2), + bind(&DlObserver::OnDownloadProgress, &observer, _1, _2)); WAIT_FOR_ASYNC_DOWNLOAD; TEST_EQUAL( observer.m_result[0], EHttpDownloadFailed, () ); @@ -184,8 +184,8 @@ UNIT_TEST(DownloadFileExists) } gMgr.DownloadFile(TEST_FILE_URL1, TEST_FILE_NAME1, - boost::bind(&DlObserver::OnDownloadFinished, &observer, _1, _2), - boost::bind(&DlObserver::OnDownloadProgress, &observer, _1, _2)); + bind(&DlObserver::OnDownloadFinished, &observer, _1, _2), + bind(&DlObserver::OnDownloadProgress, &observer, _1, _2)); WAIT_FOR_ASYNC_DOWNLOAD; TEST_EQUAL( observer.m_result[0], EHttpDownloadOk, () ); @@ -212,16 +212,16 @@ UNIT_TEST(DownloadResume) DlObserver observer1; gMgr.DownloadFile(TEST_FILE_URL1, TEST_FILE_NAME1, - boost::bind(&DlObserver::OnDownloadFinished, &observer1, _1, _2), - boost::bind(&DlObserver::OnDownloadProgress, &observer1, _1, _2), + bind(&DlObserver::OnDownloadFinished, &observer1, _1, _2), + bind(&DlObserver::OnDownloadProgress, &observer1, _1, _2), false); WAIT_FOR_ASYNC_DOWNLOAD; TEST_EQUAL( observer1.m_result[0], EHttpDownloadOk, () ); DlObserver observer2; gMgr.DownloadFile(TEST_FILE_URL1, TEST_FILE_NAME2, - boost::bind(&DlObserver::OnDownloadFinished, &observer2, _1, _2), - boost::bind(&DlObserver::OnDownloadProgress, &observer2, _1, _2), + bind(&DlObserver::OnDownloadFinished, &observer2, _1, _2), + bind(&DlObserver::OnDownloadProgress, &observer2, _1, _2), false); WAIT_FOR_ASYNC_DOWNLOAD; TEST_EQUAL( observer2.m_result[0], EHttpDownloadOk, () ); @@ -239,8 +239,8 @@ UNIT_TEST(DownloadResume) } DlObserver observer3; gMgr.DownloadFile(TEST_FILE_URL1, TEST_FILE_NAME1, - boost::bind(&DlObserver::OnDownloadFinished, &observer3, _1, _2), - boost::bind(&DlObserver::OnDownloadProgress, &observer3, _1, _2), + bind(&DlObserver::OnDownloadFinished, &observer3, _1, _2), + bind(&DlObserver::OnDownloadProgress, &observer3, _1, _2), true); WAIT_FOR_ASYNC_DOWNLOAD; TEST_EQUAL( observer3.m_result[0], EHttpDownloadOk, () ); @@ -265,8 +265,8 @@ UNIT_TEST(DownloadAbsentFile) DlObserver observer; gMgr.DownloadFile(TEST_ABSENT_FILE_URL, TEST_ABSENT_FILE_NAME, - boost::bind(&DlObserver::OnDownloadFinished, &observer, _1, _2), - boost::bind(&DlObserver::OnDownloadProgress, &observer, _1, _2)); + bind(&DlObserver::OnDownloadFinished, &observer, _1, _2), + bind(&DlObserver::OnDownloadProgress, &observer, _1, _2)); WAIT_FOR_ASYNC_DOWNLOAD; TEST_EQUAL( observer.m_result[0], EHttpDownloadFileNotFound, () ); @@ -287,8 +287,8 @@ UNIT_TEST(DownloadLockedFile) TEST( GetPlatform().IsFileExists(TEST_LOCKED_FILE_NAME), () ); gMgr.DownloadFile(TEST_LOCKED_FILE_URL, TEST_LOCKED_FILE_NAME, - boost::bind(&DlObserver::OnDownloadFinished, &observer, _1, _2), - boost::bind(&DlObserver::OnDownloadProgress, &observer, _1, _2)); + bind(&DlObserver::OnDownloadFinished, &observer, _1, _2), + bind(&DlObserver::OnDownloadProgress, &observer, _1, _2)); WAIT_FOR_ASYNC_DOWNLOAD; TEST_EQUAL( observer.m_result[0], EHttpDownloadFileIsLocked, () ); diff --git a/storage/storage.cpp b/storage/storage.cpp index 23bfb414e5..acd442abd4 100644 --- a/storage/storage.cpp +++ b/storage/storage.cpp @@ -160,8 +160,8 @@ namespace storage GetDownloadManager().DownloadFile( (UpdateBaseUrl() + UrlEncode(it->first)).c_str(), (GetPlatform().WritablePathForFile(it->first).c_str()), - boost::bind(&Storage::OnMapDownloadFinished, this, _1, _2), - boost::bind(&Storage::OnMapDownloadProgress, this, _1, _2), + bind(&Storage::OnMapDownloadFinished, this, _1, _2), + bind(&Storage::OnMapDownloadProgress, this, _1, _2), true); // enabled resume support by default // notify GUI - new status for country, "Downloading" if (m_observerChange) @@ -336,7 +336,7 @@ namespace storage GetDownloadManager().DownloadFile( update.c_str(), (GetPlatform().WritablePathForFile(UPDATE_CHECK_FILE)).c_str(), - boost::bind(&Storage::OnUpdateDownloadFinished, this, _1, _2), + bind(&Storage::OnDataUpdateCheckFinished, this, _1, _2), TDownloadProgressFunction(), false); }