1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-01 21:54:55 -04:00

Fixed getURI method in channels and features

This commit is contained in:
f4exb
2020-11-22 19:29:27 +01:00
parent 82973a4deb
commit 89a901e383
38 changed files with 12 additions and 41 deletions
+3 -2
View File
@@ -26,9 +26,10 @@
MESSAGE_CLASS_DEFINITION(Feature::MsgChannelSettings, Message)
Feature::Feature(const QString& name, WebAPIAdapterInterface *webAPIAdapterInterface) :
Feature::Feature(const QString& uri, WebAPIAdapterInterface *webAPIAdapterInterface) :
m_webAPIAdapterInterface(webAPIAdapterInterface),
m_name(name),
m_name(uri),
m_uri(uri),
m_uid(UidCalculator::getNewObjectId())
{
connect(&m_inputMessageQueue, SIGNAL(messageEnqueued()), this, SLOT(handleInputMessages()));