summaryrefslogtreecommitdiff
path: root/src/utils/paths.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-01-14 22:15:02 +0300
committerAndrei Karas <akaras@inbox.ru>2014-01-14 22:15:02 +0300
commit5170fcc8693352970b2e2fcb9a13c896654c955b (patch)
tree8cd22437cb620dd94bcadda13efcc176f98486cc /src/utils/paths.cpp
parent24a5939846bf593e17e09f3564d941a7c2a5bf27 (diff)
downloadplus-5170fcc8693352970b2e2fcb9a13c896654c955b.tar.gz
plus-5170fcc8693352970b2e2fcb9a13c896654c955b.tar.bz2
plus-5170fcc8693352970b2e2fcb9a13c896654c955b.tar.xz
plus-5170fcc8693352970b2e2fcb9a13c896654c955b.zip
Change default screenshot path from XDG_DESKTOP_DIR into XDG_PICTURES_DIR.
Diffstat (limited to 'src/utils/paths.cpp')
-rw-r--r--src/utils/paths.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/paths.cpp b/src/utils/paths.cpp
index 4599efb16..a3f61bde3 100644
--- a/src/utils/paths.cpp
+++ b/src/utils/paths.cpp
@@ -151,7 +151,7 @@ std::string getSelfName()
#endif
-std::string getDesktopDir()
+std::string getPicturesDir()
{
#ifdef WIN32
std::string dir = getSpecialFolderLocation(CSIDL_MYPICTURES);
@@ -176,7 +176,7 @@ std::string getDesktopDir()
FOR_EACH (StringVectCIter, it, arr)
{
std::string str = *it;
- if (findCutFirst(str, "XDG_DESKTOP_DIR=\""))
+ if (findCutFirst(str, "XDG_PICTURES_DIR=\""))
{
str = str.substr(0, str.size() - 1);
// use hack to replace $HOME var.