summarylogtreecommitdiffstats
path: root/wxlauncher_homedir.patch
diff options
context:
space:
mode:
authorMichael Mansell2015-12-15 11:48:11 -0500
committerMichael Mansell2015-12-15 12:11:24 -0500
commit3f82785fb45a9dea8d9eb902e009a4312ef5ffbf (patch)
treeebb4bdf0fd0ea156fd912fb8bf8c5079e02061ff /wxlauncher_homedir.patch
parent994da521925a1df3ad98665b21e889310b0f806a (diff)
downloadaur-3f82785fb45a9dea8d9eb902e009a4312ef5ffbf.tar.gz
Revert "Update to 0.10.1"
This reverts commit c0978d95b8f9188151bb57e52a4bc92a3a0d671b.
Diffstat (limited to 'wxlauncher_homedir.patch')
-rw-r--r--wxlauncher_homedir.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/wxlauncher_homedir.patch b/wxlauncher_homedir.patch
deleted file mode 100644
index e0772367868f..000000000000
--- a/wxlauncher_homedir.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-## Description: GetPlatformDefaultConfigFilePath is not a known symbol. As it is defined as inline just inline it manually.
-## Origin/Author: Christoph Korn
-## Bug: https://code.google.com/p/wxlauncher/issues/detail?id=93
-Index: diaspora-1.0.4/Diaspora/wxlauncher/code/apis/PlatformProfileManagerShared.cpp
-===================================================================
---- diaspora-1.0.4.orig/Diaspora/wxlauncher/code/apis/PlatformProfileManagerShared.cpp 2013-02-14 18:53:15.000000000 +0100
-+++ diaspora-1.0.4/Diaspora/wxlauncher/code/apis/PlatformProfileManagerShared.cpp 2013-02-15 19:24:08.319338488 +0100
-@@ -39,8 +39,10 @@
-
- wxString cmdLineString;
- #if IS_LINUX // write to folder in home dir
-- extern wxFileName GetPlatformDefaultConfigFilePath();
-- cmdLineString += GetPlatformDefaultConfigFilePath().GetFullPath().c_str();
-+ wxFileName path;
-+ path.AssignHomeDir();
-+ path.AppendDir(_T(".fs2_open"));
-+ cmdLineString += path.GetFullPath().c_str();
- #else
- cmdLineString += tcPath.c_str();
- cmdLineString += wxFileName::GetPathSeparator();
-@@ -117,4 +119,4 @@
- }
-
- return ProMan::NoError;
--}
-\ No newline at end of file
-+}