コード例 #1
0
/**
  * Changes the tone to the previous value.
  */
void GuitarTunerUI::prev()
{
    changeTone((m_currentToneIndex + 5) % 6);
}
コード例 #2
0
ファイル: guitartuner.cpp プロジェクト: AndreyKrysyuk/KP52OP
void GuitarTuner::prev()
{
    if(m_outputActive)
       changeTone((m_currentToneIndex + 5) % 6);
}
コード例 #3
0
/**
  * Changes the tone to the next value.
  */
void GuitarTunerUI::next()
{
    changeTone((m_currentToneIndex + 1) % 6);
}
コード例 #4
0
ファイル: guitartuner.cpp プロジェクト: AndreyKrysyuk/KP52OP
void GuitarTuner::next()
{
    if(m_outputActive)
        changeTone((m_currentToneIndex + 1) % 6);
}