Merge #10673: [qt] Avoid potential null pointer dereference in TransactionView::exportClicked()
fd9599b [qt] Avoid potential null pointer dereference in TransactionView::exportClicked() (practicalswift) Tree-SHA512: 33cbb65bd86aceb58918eb0a19e1727599a22285e7c89d4e7d3b2639c879dc8939708fd506006c6c092f624050d1131f997cc37f837cb980aa440f8abe5a3c18
This commit is contained in:
parent
0a215695a8
commit
184847c2ed
@ -389,6 +389,10 @@ void TransactionView::changedAmount(const QString &amount)
|
|||||||
|
|
||||||
void TransactionView::exportClicked()
|
void TransactionView::exportClicked()
|
||||||
{
|
{
|
||||||
|
if (!model || !model->getOptionsModel()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// CSV is currently the only supported format
|
// CSV is currently the only supported format
|
||||||
QString filename = GUIUtil::getSaveFileName(this,
|
QString filename = GUIUtil::getSaveFileName(this,
|
||||||
tr("Export Transaction History"), QString(),
|
tr("Export Transaction History"), QString(),
|
||||||
|
Loading…
Reference in New Issue
Block a user