1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-03 14:34:57 -04:00

Store device category (type) in the SamplingDevice structure

This commit is contained in:
f4exb
2017-11-01 20:06:33 +01:00
parent aea8de22a1
commit 9a055c643b
27 changed files with 49 additions and 38 deletions
+3 -2
View File
@@ -20,10 +20,11 @@
#include "ui_samplingdevicecontrol.h"
SamplingDeviceControl::SamplingDeviceControl(QWidget* parent) :
SamplingDeviceControl::SamplingDeviceControl(int tabIndex, QWidget* parent) :
QWidget(parent),
ui(new Ui::SamplingDeviceControl),
m_pluginManager(0)
m_pluginManager(0),
m_deviceTabIndex(tabIndex)
{
ui->setupUi(this);
}