Fix Qt Deprecations (#6386)

Co-authored-by: Kevin Zander <veratil@gmail.com>
Co-authored-by: Dominic Clark <mrdomclark@gmail.com>
This commit is contained in:
sakertooth
2022-04-22 22:04:57 -04:00
committed by Johannes Lorenz
parent 96df9b006c
commit 420769a32d
12 changed files with 67 additions and 9 deletions

View File

@@ -138,7 +138,9 @@ RemotePlugin::RemotePlugin() :
#endif
m_failed( true ),
m_watcher( this ),
m_commMutex( QMutex::Recursive ),
#if (QT_VERSION < QT_VERSION_CHECK(5,14,0))
m_commMutex(QMutex::Recursive),
#endif
m_splitChannels( false ),
m_audioBufferSize( 0 ),
m_inputCount( DEFAULT_CHANNELS ),