From e36d358115773a8d64fb29c7214e092131615313 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 14 Jun 2015 23:24:11 -0400 Subject: [PATCH] CmdCalc: Coneverted to CLI2::getWords --- src/commands/CmdCalc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/CmdCalc.cpp b/src/commands/CmdCalc.cpp index 1ed9983cb..f114ebf81 100644 --- a/src/commands/CmdCalc.cpp +++ b/src/commands/CmdCalc.cpp @@ -63,7 +63,7 @@ int CmdCalc::execute (std::string& output) // Compile all the args into one expression. std::string expression; - std::vector words = context.cli.getWords (); + std::vector words = context.cli2.getWords (); for (auto& word : words) expression += word + " ";