Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Zolotarev <alex@maps.me>2014-10-14 13:14:55 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:30:57 +0300
commit0ddcff0b07566260e1e00990f70555110fb5cfa7 (patch)
tree32d542f1b9d9f6dcdc4e800b4ac5b3d6ee62b2c8 /map/information_display.cpp
parent9ad4f6585c45443815b7ab9a691a7c47eefe6012 (diff)
[msvc][win] Fixed compilation issues
Diffstat (limited to 'map/information_display.cpp')
-rw-r--r--map/information_display.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/map/information_display.cpp b/map/information_display.cpp
index 7aa757faf2..38e31fcf41 100644
--- a/map/information_display.cpp
+++ b/map/information_display.cpp
@@ -133,13 +133,13 @@ void InformationDisplay::setController(gui::Controller * controller)
m_controller->AddElement(m_copyrightLabel);
shared_ptr<anim::Task> task(new AlfaAnimationTask(1.0, 0.0, 0.15, 3.0, m_framework));
- task->AddCallback(anim::Task::EEnded, [this]()
+ task->AddCallback(anim::Task::EEnded, [this] ()
{
m_controller->RemoveElement(m_copyrightLabel);
m_copyrightLabel.reset();
});
- m_copyrightLabel->setAnimated([task]()
+ m_copyrightLabel->setAnimated([task] ()
{
AlfaAnimationTask * t = static_cast<AlfaAnimationTask *>(task.get());
return t->GetCurrentAlfa();