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/editor
diff options
context:
space:
mode:
authorArsentiy Milchakov <milcars@mapswithme.com>2016-09-08 21:20:15 +0300
committerArsentiy Milchakov <milcars@mapswithme.com>2016-09-08 21:20:15 +0300
commit58db67b7e16113e6cd86f06d76bd2f8ee1b7da40 (patch)
tree4a2d795acaa454adab1ce01f506e0441b348a7b6 /editor
parentf2b4f7db60560f0f718a58a86ab8111e66ced5d2 (diff)
disable online config
Diffstat (limited to 'editor')
-rw-r--r--editor/config_loader.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/config_loader.cpp b/editor/config_loader.cpp
index beada4f2f5..69da08e3b2 100644
--- a/editor/config_loader.cpp
+++ b/editor/config_loader.cpp
@@ -65,13 +65,13 @@ ConfigLoader::ConfigLoader(EditorConfigWrapper & config) : m_config(config)
pugi::xml_document doc;
LoadFromLocal(doc);
ResetConfig(doc);
- m_loaderThread = thread(&ConfigLoader::LoadFromServer, this);
+ //m_loaderThread = thread(&ConfigLoader::LoadFromServer, this);
}
ConfigLoader::~ConfigLoader()
{
m_waiter.Interrupt();
- m_loaderThread.join();
+ //m_loaderThread.join();
}
void ConfigLoader::LoadFromServer()