made delete button and delete menu item call the same functions, so as to make the actions identical

This commit is contained in:
csoler 2023-08-10 23:41:51 +02:00
parent 234a510d6f
commit f6bcfb549a
3 changed files with 8 additions and 6 deletions

View file

@ -738,7 +738,8 @@ void MessageWidget::remove()
return;
}
bool deleteReal = false;
#ifdef TO_REMOVE
bool deleteReal = false;
if (msgInfo.msgflags & RS_MSG_TRASH) {
deleteReal = true;
} else {
@ -763,8 +764,8 @@ void MessageWidget::remove()
deleteLater();
}
}
emit messageRemoved();
#endif
emit messageRemovalRequested(currMsgId);
}
void MessageWidget::print()