- TW-1534 Urgency coefficient for user project disables 'info' output(thanks to
          Martin).
- Reimplemented 'information' command urgency details as a ViewText.
- Fixed math bug in rightJustify.
This commit is contained in:
Paul Beckingham 2015-02-14 12:50:10 -05:00
parent 5911286218
commit ec919a8677
5 changed files with 107 additions and 73 deletions

View file

@ -29,6 +29,7 @@
#include <string>
#include <Command.h>
#include <ViewText.h>
class CmdInfo : public Command
{
@ -37,7 +38,7 @@ public:
int execute (std::string&);
private:
std::string urgencyTerm (const std::string&, float, float) const;
void urgencyTerm (ViewText&, const std::string&, float, float) const;
};
#endif