Utils: Switch to QtcSettings

Changes a few remaining QSettings members that popped
up when trying to build with "apt-get" Qt 6.2.4.

Change-Id: I3caa8545cf02d6453b802559c2f65279e1fb63fd
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
Marcus Tillmanns
2023-09-05 08:47:35 +02:00
parent 2d383da290
commit 76a95ff0ee
4 changed files with 14 additions and 12 deletions

View File

@@ -36,14 +36,14 @@ using namespace Layouting;
namespace Utils {
static QSettings *theSettings = nullptr;
static QtcSettings *theSettings = nullptr;
void BaseAspect::setQtcSettings(QSettings *settings)
void BaseAspect::setQtcSettings(QtcSettings *settings)
{
theSettings = settings;
}
QSettings *BaseAspect::qtcSettings()
QtcSettings *BaseAspect::qtcSettings()
{
return theSettings;
}