Skip to content

Commit

Permalink
Merge pull request #35 from cpill0789/compilation_fix
Browse files Browse the repository at this point in the history
fix compilation failure on OSX.
  • Loading branch information
daschuer committed Jul 6, 2013
2 parents cad2d71 + 023bbfc commit 09c731a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/dlgprefsound.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,15 +102,15 @@ DlgPrefSound::DlgPrefSound(QWidget *pParent, SoundManager *pSoundManager,
connect(m_pMasterLatency, SIGNAL(valueChanged(double)),
this, SLOT(masterLatencyChanged(double)));

#ifdef __LINUX__
qDebug() << "RLimit Cur " << RLimit::getCurRtPrio();
qDebug() << "RLimit Max " << RLimit::getMaxRtPrio();

#ifdef __LINUX__
if (RLimit::isRtPrioAllowed())
#endif // __LINUX__
{

if (RLimit::isRtPrioAllowed()) {
limitsHint->hide();
}
#endif // __LINUX__

}

DlgPrefSound::~DlgPrefSound() {
Expand Down

0 comments on commit 09c731a

Please sign in to comment.