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

Refactoring: removed device parameter from all start() methods in sample source plugins

This commit is contained in:
f4exb
2017-04-14 03:40:45 +02:00
parent 1e086fb303
commit b8623c90ce
24 changed files with 25 additions and 40 deletions
@@ -94,7 +94,7 @@ bool SDRPlayInput::openDevice()
return true;
}
bool SDRPlayInput::start(int device)
bool SDRPlayInput::start()
{
// QMutexLocker mutexLocker(&m_mutex);
int res;
@@ -213,7 +213,7 @@ bool SDRPlayInput::handleMessage(const Message& message)
{
m_settings = settings;
stop();
start(m_devNumber);
start();
}
// standard changes
else