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

--- Comment #10 from Michael Meeks <[email protected]> ---
Code pointers:
sc/uiconfig/scalc/ui/headerfootercontent.ui - describes that dialog
sc/source/ui/pagedlg/scuitphfedit.cxx - has the code for this:

    , m_xBtnText(m_xBuilder->weld_button("buttonBTN_TEXT"))

is the 'Text attributes' button

IMPL_LINK( ScHFEditPage, ClickHdl, weld::Button&, rBtn, void )

handles the setting of text attributes.

And we need to check for and set a selection here I guess:

    if (&rBtn == m_xBtnText.get())
    {
        m_pEditFocus->SetCharAttributes();
    }

Thanks ! =)

-- 
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