fix for Qt4
This commit is contained in:
parent
31766ceab2
commit
5a04e91835
1 changed files with 5 additions and 3 deletions
|
@ -209,11 +209,13 @@ void CChannelFader::Reset()
|
||||||
strReceivedName = "";
|
strReceivedName = "";
|
||||||
SetupFaderTag ( SL_NOT_SET );
|
SetupFaderTag ( SL_NOT_SET );
|
||||||
|
|
||||||
// set a defined tool tip time out
|
// set a defined tool tip time out (only available in Qt5)
|
||||||
|
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
|
||||||
const int iToolTipDurMs = 30000;
|
const int iToolTipDurMs = 30000;
|
||||||
plblLabel->setToolTipDuration ( iToolTipDurMs );
|
plblLabel->setToolTipDuration ( iToolTipDurMs );
|
||||||
plblInstrument->setToolTipDuration ( iToolTipDurMs );
|
plblInstrument->setToolTipDuration ( iToolTipDurMs );
|
||||||
plblCountryFlag->setToolTipDuration ( iToolTipDurMs );
|
plblCountryFlag->setToolTipDuration ( iToolTipDurMs );
|
||||||
|
#endif
|
||||||
|
|
||||||
bOtherChannelIsSolo = false;
|
bOtherChannelIsSolo = false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue