diff --git a/src/frontends/xforms/ChangeLog b/src/frontends/xforms/ChangeLog index a0563a4120..2c5aae349c 100644 --- a/src/frontends/xforms/ChangeLog +++ b/src/frontends/xforms/ChangeLog @@ -1,3 +1,8 @@ +2004-12-16 Jürgen Spitzmüller + + * FormMathsBitmap.C: Do not split strings with blank into two + separate dispatches (bug 1214) + 2004-12-15 Angus Leeming * FormFiledialog.C (Reread): no longer use FileInfo::getNumberOfLinks(). diff --git a/src/frontends/xforms/FormMathsBitmap.C b/src/frontends/xforms/FormMathsBitmap.C index bb93e03d34..f8e85c2137 100644 --- a/src/frontends/xforms/FormMathsBitmap.C +++ b/src/frontends/xforms/FormMathsBitmap.C @@ -176,13 +176,7 @@ int FormMathsBitmap::GetIndex(FL_OBJECT * ob_in) void FormMathsBitmap::apply() { - string::size_type const i = latex_chosen_.find(' '); - if (i != string::npos) { - controller().dispatchFunc(LFUN_MATH_MODE); - controller().insertSymbol(latex_chosen_.substr(0,i)); - controller().insertSymbol(latex_chosen_.substr(i + 1), false); - } else - controller().insertSymbol(latex_chosen_); + controller().insertSymbol(latex_chosen_); } diff --git a/status.13x b/status.13x index 82db87f8a3..74c1467b7d 100644 --- a/status.13x +++ b/status.13x @@ -38,9 +38,12 @@ What's new - Fix LaTeX output of percentage length values <10% [bug 1523]. -- Fix output of footnotes on the titlepage, which did not work with - the memoir class [bug 1677]. +- Fix output of mathbb and mathcal symbols via the math panel + (xforms only) [bug 1214]. +- Fix output of footnotes on the titlepage, which did not work with + the memoir class [bug 1677]. + - Fix the LaTeX output of Short Titles (aka optional inset) that did not get \protect added when needed [bug 1739].