1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-23 09:20:16 +01:00

A little remnant of the "tags" table expulsion.

This commit is contained in:
Leland Lucius
2021-02-16 14:57:47 -06:00
parent ecf4727ab1
commit ade2cadaa6

View File

@@ -811,21 +811,6 @@ bool ProjectFileIO::CopyTo(const FilePath &destpath,
return false;
}
// Copy over tags (not really used yet)
rc = sqlite3_exec(db,
"INSERT INTO outbound.tags SELECT * FROM main.tags;",
nullptr,
nullptr,
nullptr);
if (rc != SQLITE_OK)
{
SetDBError(
XO("Failed to copy tags")
);
return false;
}
{
// Ensure statement gets cleaned up
sqlite3_stmt *stmt = nullptr;