diff --git a/oscar/SleepLib/loader_plugins/prs1_loader.h b/oscar/SleepLib/loader_plugins/prs1_loader.h index 29a88f9f..d621b341 100644 --- a/oscar/SleepLib/loader_plugins/prs1_loader.h +++ b/oscar/SleepLib/loader_plugins/prs1_loader.h @@ -1,5 +1,6 @@ /* SleepLib PRS1 Loader Header * + * Copyright (c) 2019 The OSCAR Team * Copyright (C) 2011-2018 Mark Watkins * * This file is subject to the terms and conditions of the GNU General Public diff --git a/oscar/SleepLib/profiles.cpp b/oscar/SleepLib/profiles.cpp index 619a3cb5..5ba6d08f 100644 --- a/oscar/SleepLib/profiles.cpp +++ b/oscar/SleepLib/profiles.cpp @@ -1,5 +1,6 @@ -/* SleepLib Profiles Implementation +/* SleepLib Profiles Implementation * + * Copyright (c) 2019 The OSCAR Team * Copyright (c) 2011-2018 Mark Watkins * * This file is subject to the terms and conditions of the GNU General Public @@ -971,9 +972,14 @@ Profile *Get(QString name) return nullptr; } -Profile *Create(QString name) +Profile *Create(QString name, const QString* in_path) { - QString path = p_pref->Get("{home}/Profiles/") + name; + QString path; + if (in_path == nullptr) { + path = p_pref->Get("{home}/Profiles/") + name; + } else { + path = *in_path; + } QDir dir(path); if (!dir.exists(path)) { diff --git a/oscar/SleepLib/profiles.h b/oscar/SleepLib/profiles.h index e1895022..52dd3b57 100644 --- a/oscar/SleepLib/profiles.h +++ b/oscar/SleepLib/profiles.h @@ -1,5 +1,6 @@ -/* SleepLib Profiles Header +/* SleepLib Profiles Header * + * Copyright (c) 2019 The OSCAR Team * Copyright (c) 2011-2018 Mark Watkins * * This file is subject to the terms and conditions of the GNU General Public @@ -263,7 +264,7 @@ void Scan(); // Initialize and load Profile void Done(); // Save all Profile objects and clear list int CleanupProfile(Profile *prof); -Profile *Create(QString name); +Profile *Create(QString name, const QString* in_path=nullptr); Profile *Get(QString name); Profile *Get();