From 52df70c4f06fed2a15922b4a28519ebd62cf7105 Mon Sep 17 00:00:00 2001 From: Steve Brokenshire Date: Tue, 12 Apr 2016 22:16:12 +0100 Subject: [PATCH] Second defined(__WIN32__) line should have been defined(__APPLE__) in GetAccountsFile() --- source/common/dirs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/common/dirs.cpp b/source/common/dirs.cpp index 8a34b19..e0e6510 100644 --- a/source/common/dirs.cpp +++ b/source/common/dirs.cpp @@ -183,7 +183,7 @@ wxString GetAccountsFile() AccountsFile.Append(wxString::FromUTF8(getenv("APPDATA"))); AccountsFile.Append(wxT("\\Xestia\\Address Book\\preferences\\accounts")); -#elif defined(__WIN32__) +#elif defined(__APPLE__) AccountsFile.Clear(); AccountsFile.Append(wxString::FromUTF8(getenv("HOME"))); -- 2.39.2