mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-23 05:27:47 +02:00
TDB2
- Converted the sort routine to TDB2.
This commit is contained in:
parent
e379af9751
commit
aef24c0c54
1 changed files with 2 additions and 2 deletions
|
@ -118,8 +118,8 @@ static bool sort_compare (int left, int right)
|
|||
return !ascending;
|
||||
|
||||
// Sort on the first dependency.
|
||||
left_number = context.tdb.id (left_string.substr (0, 36));
|
||||
right_number = context.tdb.id (right_string.substr (0, 36));
|
||||
left_number = context.tdb2.id (left_string.substr (0, 36));
|
||||
right_number = context.tdb2.id (right_string.substr (0, 36));
|
||||
|
||||
if (left_number == right_number)
|
||||
continue;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue