mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 14:07:38 +03:00
New TODO comment style.
Qt Creator 2.5 is able to parse those.
This commit is contained in:
parent
8faac078fd
commit
587a647c11
16 changed files with 38 additions and 38 deletions
|
@ -84,7 +84,7 @@ void DatabaseTabWidget::openDatabase(const QString& fileName, const QString& pw,
|
|||
const QString& keyFile)
|
||||
{
|
||||
QScopedPointer<QFile> file(new QFile(fileName));
|
||||
// TODO error handling
|
||||
// TODO: error handling
|
||||
if (!file->open(QIODevice::ReadWrite)) {
|
||||
if (!file->open(QIODevice::ReadOnly)) {
|
||||
// can't open
|
||||
|
@ -208,7 +208,7 @@ void DatabaseTabWidget::saveDatabase(Database* db)
|
|||
{
|
||||
DatabaseManagerStruct& dbStruct = m_dbList[db];
|
||||
|
||||
// TODO ensure that the data is actually written to disk
|
||||
// TODO: ensure that the data is actually written to disk
|
||||
if (dbStruct.file) {
|
||||
dbStruct.file->reset();
|
||||
m_writer.writeDatabase(dbStruct.file, db);
|
||||
|
@ -235,12 +235,12 @@ void DatabaseTabWidget::saveDatabaseAs(Database* db)
|
|||
if (!fileName.isEmpty()) {
|
||||
QFile* oldFile = dbStruct.file;
|
||||
QScopedPointer<QFile> file(new QFile(fileName));
|
||||
// TODO error handling
|
||||
// TODO: error handling
|
||||
if (!file->open(QIODevice::ReadWrite)) {
|
||||
return;
|
||||
}
|
||||
dbStruct.file = file.take();
|
||||
// TODO ensure that the data is actually written to disk
|
||||
// TODO: ensure that the data is actually written to disk
|
||||
m_writer.writeDatabase(dbStruct.file, db);
|
||||
dbStruct.file->flush();
|
||||
delete oldFile;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue