From 3b2e602e98d81bb061b879195dece49760420030 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 6 Jan 2012 10:24:30 +0000 Subject: generic unix .mozilla dir is under home dir, not xdg-config-dir --- connectivity/source/drivers/mozab/bootstrap/MNSFolders.cxx | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'connectivity') diff --git a/connectivity/source/drivers/mozab/bootstrap/MNSFolders.cxx b/connectivity/source/drivers/mozab/bootstrap/MNSFolders.cxx index d098e67f1123..2921660ea0f7 100644 --- a/connectivity/source/drivers/mozab/bootstrap/MNSFolders.cxx +++ b/connectivity/source/drivers/mozab/bootstrap/MNSFolders.cxx @@ -56,7 +56,15 @@ namespace ::osl::Security aSecurity; ::rtl::OUString aConfigPath; + #if defined(XP_WIN) || defined(MACOSX) aSecurity.getConfigDir( aConfigPath ); + #else + //This is to find the dir under which .mozilla/.thunderbird is created. + //mozilla doesn't honour XDG_CONFIG_HOME, so raw home dir required here + //not xdg-config dir + aSecurity.getHomeDir( aConfigPath ); + #endif + return aConfigPath + ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("/")); } -- cgit