On Tue, Oct 02, 2007 at 09:16:46PM -0400, Richard Heck wrote:
> Index: Paragraph.cpp
> ===================================================================
> --- Paragraph.cpp     (revision 20678)
> +++ Paragraph.cpp     (working copy)
> @@ -1672,7 +1672,9 @@
>               size_t const j = fmt.find('@', i + 1);
>               if (j != docstring::npos) {
>                       docstring parent(fmt, i + 1, j - i - 1);
> -                     docstring label = expandLabel(tclass[parent], bparams);
> +                     docstring label = from_ascii("XXXX");
> +                     if (tclass.hasLayout(parent))
> +                             label = expandLabel(tclass[parent], bparams);
>                       fmt = docstring(fmt, 0, i) + label + docstring(fmt, j + 
> 1, docstring::npos);

What does "XXXX" mean?

Andre'

Reply via email to