summaryrefslogtreecommitdiffstats
path: root/qthelper.cpp
diff options
context:
space:
mode:
authorGravatar Lubomir I. Ivanov <neolit123@gmail.com>2015-10-06 13:10:19 +0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-10-06 16:04:54 +0100
commit105cf3a01b82951c9c90a7aff90e68ac50f0517d (patch)
treeaa2d3a07a66826d276742ce89f1055ede65ac1c0 /qthelper.cpp
parente8a868aae2583fc3065b3ff150edb005cc32682b (diff)
downloadsubsurface-105cf3a01b82951c9c90a7aff90e68ac50f0517d.tar.gz
qthelper.cpp: remove system_default_directory()
This function is now exposed in the <os>.c API. Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qthelper.cpp')
-rw-r--r--qthelper.cpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/qthelper.cpp b/qthelper.cpp
index d24bfde53..00adb5ad8 100644
--- a/qthelper.cpp
+++ b/qthelper.cpp
@@ -603,30 +603,6 @@ extern "C" timestamp_t picture_get_timestamp(char *filename)
return exif.epoch();
}
-extern "C" const char *system_default_directory(void)
-{
- static char filename[PATH_MAX];
-
- if (!*filename) {
- enum QStandardPaths::StandardLocation location;
-
- // allegedly once you're on Qt5.4 or later you should use
- // QStandardPaths::AppDataLocation but on Mac that gives us
- // paths starting with /Library/...
- // #if QT_VERSION >= 0x050400
- // location = QStandardPaths::AppDataLocation;
- // #else
- location = QStandardPaths::DataLocation;
- // #endif
- QString name = QStandardPaths::standardLocations(location).first();
- QDir dir(name);
- dir.mkpath(name);
- // Why no "dir.encodeName()"? Crazy Qt
- strncpy(filename, QFile::encodeName(name), PATH_MAX-1);
- }
- return filename;
-}
-
extern "C" char *move_away(const char *old_path)
{
if (verbose > 1)