From a3b56feb1f8b6c846b2b58c6af8f01d90388c2b2 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Mon, 16 Jul 2012 01:21:58 -0400 Subject: [PATCH] Bug - On the 'udas' report, the orphans were not counted separately for the totals. --- ChangeLog | 1 + src/commands/CmdUDAs.cpp | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index d7bcd0bfc..18610baaf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -25,6 +25,7 @@ Features + Filter optimization: with no 'OR' or 'XOR' operators, no UUIDS but with IDs the completed.data file is not referenced + Reduced excessive number of sort columns on certain reports + + Speed boost for 'next' report + Similar helper subcommands for 'uuids' as for there is for 'ids' (_uuids and _zshuuids). + Possible to specify the date format when editing with 'dateformat.edit'. diff --git a/src/commands/CmdUDAs.cpp b/src/commands/CmdUDAs.cpp index 63f29edc3..0e41c8f6a 100644 --- a/src/commands/CmdUDAs.cpp +++ b/src/commands/CmdUDAs.cpp @@ -158,8 +158,8 @@ int CmdUDAs::execute (std::string& output) << orphanView.render () << optionalBlankLine () << (udas.size () == 1 - ? format (STRING_CMD_UDAS_ORPHAN, udas.size ()) - : format (STRING_CMD_UDAS_ORPHANS, udas.size ())) + ? format (STRING_CMD_UDAS_ORPHAN, orphans.size ()) + : format (STRING_CMD_UDAS_ORPHANS, orphans.size ())) << "\n"; }