mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Code Cleanup
- All objects now use the same convention for naming members. The consistency is a good thing.
This commit is contained in:
parent
fb6dc5058f
commit
dab06f8672
53 changed files with 1347 additions and 1349 deletions
|
@ -63,13 +63,13 @@ int CmdStatistics::execute (std::string& output)
|
|||
size_t dataSize = 0;
|
||||
|
||||
Directory location (context.config.get ("data.location"));
|
||||
File pending (location.data + "/pending.data");
|
||||
File pending (location._data + "/pending.data");
|
||||
dataSize += pending.size ();
|
||||
|
||||
File completed (location.data + "/completed.data");
|
||||
File completed (location._data + "/completed.data");
|
||||
dataSize += completed.size ();
|
||||
|
||||
File undo (location.data + "/undo.data");
|
||||
File undo (location._data + "/undo.data");
|
||||
dataSize += undo.size ();
|
||||
|
||||
std::vector <std::string> undoTxns;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue