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
path: root/qt
diff options
context:
space:
mode:
authorvng <viktor.govako@gmail.com>2015-03-07 12:27:16 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:38:30 +0300
commitc0bd44f08b31e81547702f6d252fe16d9ae2552c (patch)
tree5ec7d0756858bd84057de9225e67889407ad9b59 /qt
parent4dda5ac55dd97c5d72938093fa2072731afa6ff8 (diff)
[desktop] Added empty routing callback.
Diffstat (limited to 'qt')
-rw-r--r--qt/draw_widget.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/qt/draw_widget.cpp b/qt/draw_widget.cpp
index 249ca8c2b6..304ecd6691 100644
--- a/qt/draw_widget.cpp
+++ b/qt/draw_widget.cpp
@@ -97,6 +97,10 @@ namespace qt
else
layout.DownloadMap(idx, static_cast<storage::TMapOptions>(opt));
});
+
+ m_framework->SetRouteBuildingListener([] (routing::IRouter::ResultCode, vector<storage::TIndex> const &)
+ {
+ });
}
DrawWidget::~DrawWidget()