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:
Diffstat (limited to 'search/editor_delegate.hpp')
-rw-r--r--search/editor_delegate.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/search/editor_delegate.hpp b/search/editor_delegate.hpp
index 333e500012..76ba3562b5 100644
--- a/search/editor_delegate.hpp
+++ b/search/editor_delegate.hpp
@@ -2,14 +2,14 @@
#include "editor/osm_editor.hpp"
-class DataSourceBase;
+class DataSource;
namespace search
{
class EditorDelegate : public osm::Editor::Delegate
{
public:
- EditorDelegate(DataSourceBase const & dataSource);
+ EditorDelegate(DataSource const & dataSource);
// osm::Editor::Delegate overrides:
MwmSet::MwmId GetMwmIdByMapName(string const & name) const override;
@@ -19,6 +19,6 @@ public:
m2::PointD const & point) const override;
private:
- DataSourceBase const & m_dataSource;
+ DataSource const & m_dataSource;
};
} // namespace search