From: Juergen Spitzmueller Date: Mon, 24 Jul 2017 07:09:48 +0000 (+0200) Subject: {Over,under}full [hv]box warning is a warning. X-Git-Tag: 2.3.0beta1~146 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=9b128671a51329fe123583823dcb6d42e1e05c06;p=lyx.git {Over,under}full [hv]box warning is a warning. Since this is something one should be aware of, make it more prominent in the Log dialog. --- diff --git a/src/frontends/qt4/GuiLog.cpp b/src/frontends/qt4/GuiLog.cpp index 1f4bb45937..5b88d30c08 100644 --- a/src/frontends/qt4/GuiLog.cpp +++ b/src/frontends/qt4/GuiLog.cpp @@ -45,9 +45,9 @@ namespace frontend { // FIXME: These regexes are incomplete. It would be good if we could collect those used in LaTeX::scanLogFile // and LaTeX::scanBlgFile and re-use them here!(spitz, 2013-05-27) // Information -QRegExp exprInfo("^(Document Class:|LaTeX Font Info:|File:|Package:|Language:|Underfull|Overfull|.*> INFO - |\\(|\\\\).*$"); +QRegExp exprInfo("^(Document Class:|LaTeX Font Info:|File:|Package:|Language:|.*> INFO - |\\(|\\\\).*$"); // Warnings -QRegExp exprWarning("^(LaTeX Warning|LaTeX Font Warning|Package [\\w\\.]+ Warning|Class \\w+ Warning|Warning--|.*> WARN - ).*$"); +QRegExp exprWarning("^(LaTeX Warning|LaTeX Font Warning|Package [\\w\\.]+ Warning|Class \\w+ Warning|Warning--|Underfull|Overfull|.*> WARN - ).*$"); // Errors QRegExp exprError("^(!|.*---line [0-9]+ of file|.*> FATAL - |.*> ERROR - |Missing character: There is no ).*$");