From aef392d9df8bb5e4ada4b3f8f44016e8a839d154 Mon Sep 17 00:00:00 2001 From: Scott Murray Date: Tue, 3 Jan 2023 01:02:10 -0500 Subject: Update radio wrapper name Tweak to handle Radio -> RadioClient name change in libqtappfw-radio. Bug-AGL: SPEC-4665 Signed-off-by: Scott Murray Change-Id: I4ba7192b385028a07a454286f8986a563625c5b2 (cherry picked from commit 6ae60dcb666e95dad881457cea03a7b72d15faf3) --- app/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/main.cpp b/app/main.cpp index d7cfd44..7156900 100644 --- a/app/main.cpp +++ b/app/main.cpp @@ -25,7 +25,7 @@ #include #include #include -#include +#include #include "PresetDataObject.h" #define APP_DATA_PRESETS_PATH "/app-data/radio/presets.conf" @@ -80,7 +80,7 @@ int main(int argc, char *argv[]) QQmlApplicationEngine engine; QQmlContext *context = engine.rootContext(); context->setContextProperty("presetModel", QVariant::fromValue(presetDataList)); - context->setContextProperty("radio", new Radio(context)); + context->setContextProperty("radio", new RadioClient(context)); engine.load(QUrl(QStringLiteral("qrc:/Radio.qml"))); return app.exec(); } -- cgit 1.2.3-korg