mirror of
https://github.com/wf-group/wfview
synced 2026-08-13 17:32:59 -04:00
Change class constructors to include parent
This commit is contained in:
parent
2769f3a7a8
commit
fc451b99bd
16 changed files with 32 additions and 30 deletions
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
|
||||
|
||||
audioHandler::audioHandler(QObject* parent)
|
||||
audioHandler::audioHandler(QObject* parent) : QObject(parent)
|
||||
{
|
||||
Q_UNUSED(parent)
|
||||
}
|
||||
|
|
@ -112,7 +112,7 @@ bool audioHandler::init(audioSetup setup)
|
|||
|
||||
// We "hopefully" now have a valid format that is supported so try connecting
|
||||
|
||||
converter = new audioConverter();
|
||||
converter = new audioConverter(this);
|
||||
converterThread = new QThread(this);
|
||||
if (setup.isinput) {
|
||||
converterThread->setObjectName("audioConvIn()");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue