From 52c029d4d9a2f996a56bd7bf6c8cd4334fbfc6d0 Mon Sep 17 00:00:00 2001 From: Federico Hernandez Date: Tue, 8 Jun 2010 10:05:27 +0200 Subject: [PATCH] Marked place in code with TODO for completion of enhancement #407. (which was called #307 wrongly in commit 51e5a183) --- src/command.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/command.cpp b/src/command.cpp index fa0296585..26288e32e 100644 --- a/src/command.cpp +++ b/src/command.cpp @@ -699,6 +699,11 @@ int handleShow (std::string &outs) foreach (i, all) { std::string value = context.config.get (*i); + + // TODO Add configuration variables and names to output table + // TODO depending on argument to the show command + // TODO alias, calendar, color, general, holiday, report + int row = table.addRow (); table.addCell (row, 0, *i); table.addCell (row, 1, value);