mirror of https://github.com/procxx/kepka.git
Closed beta 1001007001: Fix build in GCC.
This commit is contained in:
parent
7dd50fa931
commit
11d4c50202
|
@ -597,7 +597,7 @@ void Call::setState(State state) {
|
||||||
break;
|
break;
|
||||||
case State::Ended:
|
case State::Ended:
|
||||||
_delegate->playSound(Delegate::Sound::Ended);
|
_delegate->playSound(Delegate::Sound::Ended);
|
||||||
// fallthrough
|
// [[fallthrough]]
|
||||||
case State::EndedByOtherDevice:
|
case State::EndedByOtherDevice:
|
||||||
_delegate->callFinished(this);
|
_delegate->callFinished(this);
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -590,7 +590,7 @@ bool MainWindow::eventFilter(QObject *object, QEvent *e) {
|
||||||
auto key = static_cast<QKeyEvent*>(e)->key();
|
auto key = static_cast<QKeyEvent*>(e)->key();
|
||||||
FeedLangTestingKey(key);
|
FeedLangTestingKey(key);
|
||||||
}
|
}
|
||||||
[[fallthrough]];
|
// [[fallthrough]];
|
||||||
case QEvent::MouseButtonPress:
|
case QEvent::MouseButtonPress:
|
||||||
case QEvent::TouchBegin:
|
case QEvent::TouchBegin:
|
||||||
case QEvent::Wheel:
|
case QEvent::Wheel:
|
||||||
|
|
Loading…
Reference in New Issue