Skip to content
Snippets Groups Projects
Commit 010fa977 authored by littletux89@gmail.com's avatar littletux89@gmail.com
Browse files

[*] Fixed memory access error when terminating an application.

parent 9289e063
No related branches found
No related tags found
No related merge requests found
......@@ -6,8 +6,8 @@ import KelvinDashboard 1.0
DapUiQmlScreenAbout {
id: dapQmlScreenAbout
textTitle.text: DapServiceController.Brand
textTitle.text: dapServiceController.Brand
textAbout.text: "KelvinDashboard"
textVersion.text: "Version " + DapServiceController.Version
textVersion.text: "Version " + dapServiceController.Version
textYear.text: new Date().toLocaleDateString(locale, "dd MMM yyyy")
}
......@@ -52,7 +52,6 @@ int main(int argc, char *argv[])
qmlRegisterType<DapScreenDialog>("KelvinDashboard", 1, 0, "DapScreenDialog");
qmlRegisterType<DapScreenDialogChangeWidget>("KelvinDashboard", 1, 0, "DapScreenDialogChangeWidget");
qmlRegisterType<DapLogMessage>("LogMessage", 1, 0, "DapLogMessage");
qmlRegisterSingletonType<DapServiceController>("KelvinDashboard", 1, 0, "DapServiceController", DapServiceController::singletonProvider);
qmlRegisterSingletonType<DapUiQmlWidgetModel>("KelvinDashboard", 1, 0, "DapUiQmlWidgetModel", DapUiQmlWidgetModel::singletonProvider);
QQmlApplicationEngine engine;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment