2018-05-31 Fred Gleason <fredg@paravelsystems.com>

* Refactored table drops to use 'RDApplication::dropTable()'.
This commit is contained in:
Fred Gleason
2018-05-31 19:11:16 +00:00
parent c6bbac7267
commit 84430a10ef
13 changed files with 58 additions and 101 deletions

View File

@@ -771,9 +771,7 @@ void EditClock::AbandonClock(QString name)
RDSqlQuery *q=new RDSqlQuery(sql);
delete q;
sql=QString("drop table `")+RDClock::tableName(name)+"`";
q=new RDSqlQuery(sql);
delete q;
rda->dropTable(RDClock::tableName(name));
}