From: Steve Brokenshire Date: Tue, 12 Apr 2016 21:16:12 +0000 (+0100) Subject: Second defined(__WIN32__) line should have been defined(__APPLE__) in GetAccountsFile() X-Git-Tag: release-0.12~1 X-Git-Url: http://Server1/repobrowser/?p=xestiaab%2F.git;a=commitdiff_plain;h=52df70c4f06fed2a15922b4a28519ebd62cf7105 Second defined(__WIN32__) line should have been defined(__APPLE__) in GetAccountsFile() --- 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")));