From e9387f60819ad7a1f0cf5c83d20fed0026802a61 Mon Sep 17 00:00:00 2001
From: Michel Juillard <michel.juillard@mjui.fr>
Date: Sat, 28 Apr 2012 15:11:49 +0200
Subject: [PATCH] corrected but in plot of conditional forecast

---
 ComputingTasks.cc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ComputingTasks.cc b/ComputingTasks.cc
index c7fc6bff..f9cd15ac 100644
--- a/ComputingTasks.cc
+++ b/ComputingTasks.cc
@@ -1225,9 +1225,9 @@ PlotConditionalForecastStatement::writeOutput(ostream &output, const string &bas
 {
   symbol_list.writeOutput("var_list_", output);
   if (periods == -1)
-    output << "plot_icforecast(var_list_);" << endl;
+    output << "plot_icforecast(var_list_,[],options_);" << endl;
   else
-    output << "plot_icforecast(var_list_, " << periods << ");" << endl;
+    output << "plot_icforecast(var_list_, " << periods << ",options_);" << endl;
 }
 
 SvarIdentificationStatement::SvarIdentificationStatement(const svar_identification_restrictions_t &restrictions_arg,
-- 
GitLab