forked from organicmaps/organicmaps
[android] Made cpp method not constant - removed const
This commit is contained in:
parent
0ca4d6245c
commit
8e66aa3365
2 changed files with 2 additions and 2 deletions
|
@ -3336,7 +3336,7 @@ ads::Engine const & Framework::GetAdsEngine() const
|
|||
return *m_adsEngine;
|
||||
}
|
||||
|
||||
void Framework::DisableAdProvider(ads::Banner::Type const type, ads::Banner::Place const place) const
|
||||
void Framework::DisableAdProvider(ads::Banner::Type const type, ads::Banner::Place const place)
|
||||
{
|
||||
ASSERT(m_adsEngine, ());
|
||||
m_adsEngine.get()->DisableAdProvider(type, place);
|
||||
|
|
|
@ -352,7 +352,7 @@ public:
|
|||
void VisualizeCityBoundariesInRect(m2::RectD const & rect);
|
||||
|
||||
ads::Engine const & GetAdsEngine() const;
|
||||
void DisableAdProvider(ads::Banner::Type const type, ads::Banner::Place const place) const;
|
||||
void DisableAdProvider(ads::Banner::Type const type, ads::Banner::Place const place);
|
||||
|
||||
public:
|
||||
// SearchAPI::Delegate overrides:
|
||||
|
|
Loading…
Add table
Reference in a new issue