summaryrefslogtreecommitdiff
path: root/bootstrap.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap.cxx')
-rw-r--r--bootstrap.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/bootstrap.cxx b/bootstrap.cxx
index 7a03b8f..6f01ab1 100644
--- a/bootstrap.cxx
+++ b/bootstrap.cxx
@@ -2,11 +2,14 @@
Bootstrap::Bootstrap(QObject *parent):
QObject(parent),
- bs_mode(LightMode),
bs_theme(None),
bs_lightBodyBg("#fff"),
bs_darkBodyBg("#212529")
{
+ QFile conf{QStringLiteral(":/qtquickcontrols2.conf")};
+ conf.open(QFile::ReadOnly | QFile::Text);
+ qDebug() << conf.readAll();
+ conf.close();
}
Bootstrap *Bootstrap::qmlAttachedProperties(QObject *object)