diff options
| author | 2023-04-30 18:30:36 -0400 | |
|---|---|---|
| committer | 2023-04-30 18:30:36 -0400 | |
| commit | 3565aad630864ecdbe53fdaa501ea708555b3c7c (patch) | |
| tree | c743e4ad0bad39ebdb2f514c7cc52d34a257ebbe /SQLiteStudio3/sqlitestudiocli/cli.cpp | |
| parent | 1fdc150116cad39aae5c5da407c3312b47a59e3a (diff) | |
New upstream version 3.4.4+dfsg.upstream/3.4.4+dfsg
Diffstat (limited to 'SQLiteStudio3/sqlitestudiocli/cli.cpp')
| -rw-r--r-- | SQLiteStudio3/sqlitestudiocli/cli.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/SQLiteStudio3/sqlitestudiocli/cli.cpp b/SQLiteStudio3/sqlitestudiocli/cli.cpp index 30bf175..6251745 100644 --- a/SQLiteStudio3/sqlitestudiocli/cli.cpp +++ b/SQLiteStudio3/sqlitestudiocli/cli.cpp @@ -120,6 +120,7 @@ Db* CLI::getCurrentDb() const void CLI::exit() { + SQLITESTUDIO->cleanUp(); doExit = true; } @@ -245,23 +246,25 @@ void CLI::applyHistoryLimit() #endif } -void CLI::openDbFile(const QString& path) +bool CLI::openDbFile(const QString& path) { Db* db = DBLIST->getByPath(path); if (db) { println(tr("Database passed in command line parameters (%1) was already on the list under name: %2").arg(path, db->getName())); - return; + setCurrentDb(db); + return true; } QString name = DBLIST->quickAddDb(path, QHash<QString,QVariant>()); if (name.isNull()) { println(tr("Could not add database %1 to list.").arg(path)); - return; + return false; } db = DBLIST->getByName(name); setCurrentDb(db); + return true; } void CLI::doWork() |
