X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FLaTeXFeatures.C;h=21cf9e4d111ae3df5b711f8f123593f27f415582;hb=a858be7332e331e0244e4dba7b0931b6072ffd3d;hp=71bc6d49da6c49ce151449e08b26ea91b2d48184;hpb=0eccdd1c3613e5170deb77b22174dd0afde833e9;p=lyx.git diff --git a/src/LaTeXFeatures.C b/src/LaTeXFeatures.C index 71bc6d49da..21cf9e4d11 100644 --- a/src/LaTeXFeatures.C +++ b/src/LaTeXFeatures.C @@ -16,7 +16,7 @@ #endif #include "LString.h" -#include "error.h" +#include "debug.h" #include "lyx_sty.h" #include "lyxrc.h" #include "LaTeXFeatures.h" @@ -244,13 +244,10 @@ string LaTeXFeatures::getTClassPreamble(BufferParams const ¶ms) void LaTeXFeatures::showStruct(BufferParams ¶ms) { - lyxerr.print("LyX needs the following commands when LaTeXing:"); + lyxerr << "LyX needs the following commands when LaTeXing:" // packs - lyxerr.print("***** Packages:"); - lyxerr.print(getPackages(params)); - lyxerr.print("***** Macros:"); - lyxerr.print(getMacros(params)); - lyxerr.print("***** Textclass stuff:"); - lyxerr.print(getTClassPreamble(params)); - lyxerr.print("***** done."); + << "\n***** Packages:" << getPackages(params) + << "\n***** Macros:" << getMacros(params) + << "\n***** Textclass stuff:" << getTClassPreamble(params) + << "\n***** done." << endl; }