Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions _codeql_detected_source_root
4 changes: 2 additions & 2 deletions src/database.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ DataBase::DataBase(const QString &_parentClass, const QString &_softVersion, con
return;
}
qDebug() << Q_FUNC_INFO << " - - connection Name: " << dbConnectionName ;
qDebug() << Q_FUNC_INFO << " - END"; - DB Name: " << db.databaseName() ;
qDebug() << Q_FUNC_INFO << " - END - DB Name: " << db.databaseName() ;
insertPreparedQueries.clear();
insertQueryFields.clear();
qDebug() << Q_FUNC_INFO << " - END";
Expand Down Expand Up @@ -1650,7 +1650,7 @@ bool DataBase::recreatePropModes()
qDebug() << Q_FUNC_INFO << " - Start";
if (isTheTableExisting("prop_mode_enumeration"))
{
f Table Exist" ;
qDebug() << Q_FUNC_INFO << " - Table Exist" ;
bool sqlOk = false;
sqlOk = execQuery(Q_FUNC_INFO, "DROP TABLE prop_mode_enumeration");

Expand Down
Loading