More deprecation warnings.
This commit is contained in:
parent
e2669b4e2b
commit
dd9cfb39f5
|
@ -647,7 +647,11 @@ bool QxtCsvModel::toCSV(QIODevice* dest, QString &error, bool withHeader, QChar
|
||||||
stream << data << Qt::endl;
|
stream << data << Qt::endl;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
|
||||||
stream << flush;
|
stream << flush;
|
||||||
|
#else
|
||||||
|
stream << Qt::flush;
|
||||||
|
#endif
|
||||||
dest->close();
|
dest->close();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user