mirror of
https://github.com/HenkKalkwater/harbour-sailfin.git
synced 2025-09-05 18:22:46 +00:00
Add (optional) firejail support
This commit is contained in:
parent
8552e08a12
commit
e4e35c03d4
6 changed files with 50 additions and 8 deletions
|
@ -27,7 +27,13 @@ CredentialsManager * CredentialsManager::newInstance(QObject *parent) {
|
|||
// FallbackCredentialsManager //
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
FallbackCredentialsManager::FallbackCredentialsManager(QObject *parent)
|
||||
: CredentialsManager (parent) {
|
||||
: CredentialsManager (parent)
|
||||
#if PLATFORM_SAILFISHOS
|
||||
// I'd rather not hardcoded this here, but I don´t know a better, quick solution.
|
||||
// since this file must be placed in this path due to sandboxing.
|
||||
, m_settings("nl.netsoj.chris/Sailfin/sailfin")
|
||||
#endif
|
||||
{
|
||||
m_settings.beginGroup("Credentials");
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue