From bc2d4a6aea143d0cbea7f495fe06120d71d945d7 Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Tue, 4 Jan 2011 00:23:56 +0200 Subject: [PATCH] [iPhone] Fixed compilation issue --- iphone/Maps/Settings/CountriesViewController.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iphone/Maps/Settings/CountriesViewController.mm b/iphone/Maps/Settings/CountriesViewController.mm index fddc77c874..941073ebb5 100644 --- a/iphone/Maps/Settings/CountriesViewController.mm +++ b/iphone/Maps/Settings/CountriesViewController.mm @@ -48,7 +48,7 @@ using namespace storage; TProgressFunc progressImpl = (TProgressFunc)[self methodForSelector:progressSel]; storage.Subscribe(boost::bind(finishImpl, self, finishSel, _1), - boost::bind(progressImpl, self, progressSel, _1, _2)); + boost::bind(progressImpl, self, progressSel, _1, _2), NULL); } return self; }