mirror of https://github.com/procxx/kepka.git
Fix crash in calls panel closing.
This commit is contained in:
parent
0b77c0bce8
commit
8a60658af7
|
@ -646,7 +646,9 @@ void Panel::paintEvent(QPaintEvent *e) {
|
|||
}
|
||||
|
||||
void Panel::closeEvent(QCloseEvent *e) {
|
||||
_call->hangup();
|
||||
if (_call) {
|
||||
_call->hangup();
|
||||
}
|
||||
}
|
||||
|
||||
void Panel::mousePressEvent(QMouseEvent *e) {
|
||||
|
|
Loading…
Reference in New Issue