Enhancement - Hooks

- Implemented a few hooks.
- Implemented several Lua API calls.
- Unit tests for all hooks and API calls.
This commit is contained in:
Paul Beckingham 2010-02-07 00:22:02 -05:00
parent cb952329d3
commit 1a02cacc53
15 changed files with 990 additions and 60 deletions

View file

@ -169,7 +169,10 @@ int runCustomReport (
table.setReportName (report);
foreach (task, tasks)
{
table.addRow ();
context.hooks.trigger ("pre-display", *task);
}
int columnCount = 0;
int dueColumn = -1;