Kaydet (Commit) 6be6357c authored tarafından Caolán McNamara's avatar Caolán McNamara

generic unix .mozilla dir is under home dir, not xdg-config-dir

üst 0d7e2108
......@@ -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("/"));
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment