keepassxc/src/gui/csvImport
Jonathan White cb9fe40ebb
Fix all Qt 5.15 deprecation warnings (#7783)
* Deprecated qSort() -> std::sort()
* Replace QDateTime::toString(Qt::DefaultLocaleShortDate) with Clock::toString()
* Replace QDateTime::toString(Qt::SystemLocaleShortDate) with QLocale::system().toString(..., QLocale::ShortFormat)
* Use QDateTime::startOfDay() instead of QDate(QDateTime)
  Note: QDateTime::startOfDay() is only available in Qt 5.14, we need to guard it
* Replace QString::SkipEmptyParts with Qt::SkipEmptyParts
  Note: Its designated replacement, Qt::SplitBehavior, was only added in Qt 5.14.
* Don't call deprecated QFlags(nullptr) constructor
* QSet::{toList->values}
* Replace QList::toSet, QSet::fromList with Tools::asSet()
* QHash::insertMulti -> QMultiHash::insert
* QProcess::startDetached: non-deprecated overload
* QProcess::{pid->processId}
* QPainter::{HighQuality->}Antialiasing
* QPalette::{background->window}()
* Use Qt::{Background,Foreground}Role
* endl -> Qt::endl, flush -> Qt::flush
* Make YubiKey::s_interfaceMutex non-recursive
* OpenSSHKeyGenDialog: use non-deprecated QComboBox::sizeAdjustPolicy setting
2025-10-25 19:17:35 -04:00
..
CsvImportWidget.cpp Fix all Qt 5.15 deprecation warnings (#7783) 2025-10-25 19:17:35 -04:00
CsvImportWidget.h Add 1Password 1PUX and Bitwarden JSON Importers 2024-03-09 15:21:46 -05:00
CsvImportWidget.ui Add ability to parse tags from CSV files 2025-03-01 17:14:51 -05:00
CsvParserModel.cpp Improve CSV import when title field isn't specified 2024-06-16 17:11:33 -04:00
CsvParserModel.h Improve CSV import when title field isn't specified 2024-06-16 17:11:33 -04:00