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:
Wladimir J. van der Laan 2017-06-29 14:44:07 +02:00 committed by Pasta
parent 0a215695a8
commit 184847c2ed
No known key found for this signature in database
GPG Key ID: D362C9F7142766AE

View File

@ -389,6 +389,10 @@ void TransactionView::changedAmount(const QString &amount)
void TransactionView::exportClicked()
{
if (!model || !model->getOptionsModel()) {
return;
}
// CSV is currently the only supported format
QString filename = GUIUtil::getSaveFileName(this,
tr("Export Transaction History"), QString(),