X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FOutputParams.h;h=2267ffcf1cf8e6b63d361fd2a7d6d94aa42d1cb4;hb=bcf64dd11c899e5937f447b19b62e1b3eac17a48;hp=fd2894fa2e37bd167b70947324669ede22a47384;hpb=f630be890494c849981e4fb52ea4740506e92bed;p=lyx.git diff --git a/src/OutputParams.h b/src/OutputParams.h index fd2894fa2e..2267ffcf1c 100644 --- a/src/OutputParams.h +++ b/src/OutputParams.h @@ -23,7 +23,7 @@ namespace lyx { class Encoding; class ExportData; -class LyXFont; +class Font; class OutputParams { @@ -63,7 +63,7 @@ public: /** the font at the point where the inset is */ - LyXFont const * local_font; + Font const * local_font; /** Document language babel name */ @@ -77,7 +77,7 @@ public: copy (e.g. in insets): \code int InsetFoo::latex(..., OutputParams const & runparams_in) const { - OutputParams runparams(runparams_in); + OutputParams runparams(runparams_in); runparams.inComment = true; ... InsetBla::latex(..., runparams); @@ -120,18 +120,18 @@ public: */ bool inComment; - /** allow output of only part of the top-level paragraphs + /** allow output of only part of the top-level paragraphs * par_begin: beginning paragraph */ pit_type par_begin; - /** allow output of only part of the top-level paragraphs + /** allow output of only part of the top-level paragraphs * par_end: par_end-1 is the ending paragraph * if par_begin=par_end, output all paragraphs */ pit_type par_end; - /** whether or not do actual file copying and image conversion + /** whether or not do actual file copying and image conversion * This mode will be used to preview the source code */ bool dryrun;