From 68b59d1ac70384e8af329d29cb2de6472936471a Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 25 Oct 2014 22:28:15 -0400 Subject: [PATCH] CLI - Converted CmdShow from Parser to CLI. --- src/commands/CmdShow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/CmdShow.cpp b/src/commands/CmdShow.cpp index 97e6770ad..f3c0f0a0f 100644 --- a/src/commands/CmdShow.cpp +++ b/src/commands/CmdShow.cpp @@ -56,7 +56,7 @@ int CmdShow::execute (std::string& output) // Obtain the arguments from the description. That way, things like '--' // have already been handled. - std::vector words = context.parser.getWords (); + std::vector words = context.cli.getWords (); if (words.size () > 1) throw std::string (STRING_CMD_SHOW_ARGS);