Commit 82fcf653 authored by barthess's avatar barthess

mapscache moved to user`s home directory to prevent polition of filesystem root

parent 106ffa74
...@@ -41,9 +41,9 @@ namespace core { ...@@ -41,9 +41,9 @@ namespace core {
void Cache::setCacheLocation(const QString& value) void Cache::setCacheLocation(const QString& value)
{ {
cache=value; cache=value;
routeCache = cache + "RouteCache" + QDir::separator(); routeCache = cache + "RouteCache/";
geoCache = cache + "GeocoderCache"+ QDir::separator(); geoCache = cache + "GeocoderCache/";
placemarkCache = cache + "PlacemarkCache" + QDir::separator(); placemarkCache = cache + "PlacemarkCache/";
ImageCache.setGtileCache(value); ImageCache.setGtileCache(value);
} }
QString Cache::CacheLocation() QString Cache::CacheLocation()
...@@ -54,7 +54,7 @@ namespace core { ...@@ -54,7 +54,7 @@ namespace core {
{ {
if(cache.isNull()|cache.isEmpty()) if(cache.isNull()|cache.isEmpty())
{ {
cache= Utils::PathUtils().GetStoragePath()+"mapscache"+QDir::separator(); cache = QDir::homePath() + "/mapscache/";
setCacheLocation(cache); setCacheLocation(cache);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment