Code Cleanup

- Migrated from Context::message to Context::footnote.  This more clear
  to the developer where the messages will be shown.
This commit is contained in:
Paul Beckingham 2009-06-25 15:00:32 -04:00
parent 104ad5a5b5
commit c5d7b41d98
3 changed files with 9 additions and 26 deletions

View file

@ -457,7 +457,7 @@ bool nag (Task& task)
if (pri == ' ' && !overdue && !high && !medium && !low) return false;
// All the excuses are made, all that remains is to nag the user.
context.message (nagMessage);
context.footnote (nagMessage);
return true;
}