From 07eb1add3c500ca4c53d499340bf5d524e288b39 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 20 Jun 2012 10:11:01 +0200 Subject: Rename --*logue options to --*logue-file --- cli/generator.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'cli/generator.cxx') diff --git a/cli/generator.cxx b/cli/generator.cxx index 1ebde25..8d14bd7 100644 --- a/cli/generator.cxx +++ b/cli/generator.cxx @@ -310,14 +310,14 @@ generate (options const& ops, semantics::cli_unit& unit, path const& p) // ifstream prologue, epilogue; { - string file (ops.man_prologue ()); + string file (ops.man_prologue_file ()); if (!file.empty ()) open (prologue, file); } { - string file (ops.man_epilogue ()); + string file (ops.man_epilogue_file ()); if (!file.empty ()) open (epilogue, file); @@ -368,14 +368,14 @@ generate (options const& ops, semantics::cli_unit& unit, path const& p) // ifstream prologue, epilogue; { - string file (ops.html_prologue ()); + string file (ops.html_prologue_file ()); if (!file.empty ()) open (prologue, file); } { - string file (ops.html_epilogue ()); + string file (ops.html_epilogue_file ()); if (!file.empty ()) open (epilogue, file); -- cgit v1.1