https://bugs.documentfoundation.org/show_bug.cgi?id=101648

Julien Nabet <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #2 from Julien Nabet <[email protected]> ---
Created attachment 126975
  --> https://bugs.documentfoundation.org/attachment.cgi?id=126975&action=edit
bt with symbols

On pc Debian x86-64 with master sources updated yesterday, I could reproduce
this.

I included some extra gdb traces.

The problem is
http://opengrok.libreoffice.org/xref/core/sw/source/ui/fmtui/tmpdlg.cxx#76
     76     : SfxStyleDialog(pParent,
     77                     "TemplateDialog" +
OUString::number((sal_uInt16)nRegion),
     78                     "modules/swriter/ui/templatedialog" +
     79                         OUString::number((sal_uInt16)nRegion) + ".ui",
     80                     rBase)

nRegion = SfxStyleFamily::Table
(sal_uInt16)nRegion = 32

See also http://opengrok.libreoffice.org/xref/core/include/rsc/rscsfx.hxx#33
     31 // This is used as a flags enum in sw/, but only there,
     32 // so I don't pull in o3tl::typed_flags here
     33 enum class SfxStyleFamily {
     34     None    = 0x00,
     35     Char    = 0x01,
     36     Para    = 0x02,
     37     Frame   = 0x04,
     38     Page    = 0x08,
     39     Pseudo  = 0x10,
     40     Table   = 0x20,
     41     Cell    = 0x40,
     42     All     = 0x7fff
     43 };

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to