diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-06-02 19:40:31 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-06-02 22:16:45 +0200 |
commit | 38bdca63743be278377271d83110b07dec2345db (patch) | |
tree | 6424985361b9fad397307257da9e2ec970fcb5ed /sw/source/ui/dialog | |
parent | cd08397eedbe347784a3ac569481a17a8391e7b2 (diff) |
SwNumberingTypeListBox fully replaced now
Change-Id: I7610cf8f602c6939dc994dd4c418d9e07aaf6b20
Reviewed-on: https://gerrit.libreoffice.org/55217
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sw/source/ui/dialog')
-rw-r--r-- | sw/source/ui/dialog/uiregionsw.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/ui/dialog/uiregionsw.cxx b/sw/source/ui/dialog/uiregionsw.cxx index 50f052154de7..9c247434f2c7 100644 --- a/sw/source/ui/dialog/uiregionsw.cxx +++ b/sw/source/ui/dialog/uiregionsw.cxx @@ -1836,7 +1836,7 @@ SwSectionFootnoteEndTabPage::SwSectionFootnoteEndTabPage(TabPageParent pParent, , m_xFootnoteNtNumFormatCB(m_xBuilder->weld_check_button("ftnntnumfmt")) , m_xFootnotePrefixFT(m_xBuilder->weld_label("ftnprefix_label")) , m_xFootnotePrefixED(m_xBuilder->weld_entry("ftnprefix")) - , m_xFootnoteNumViewBox(new NumberingTypeListBox(m_xBuilder->weld_combo_box_text("ftnnumviewbox"))) + , m_xFootnoteNumViewBox(new SwNumberingTypeListBox(m_xBuilder->weld_combo_box_text("ftnnumviewbox"))) , m_xFootnoteSuffixFT(m_xBuilder->weld_label("ftnsuffix_label")) , m_xFootnoteSuffixED(m_xBuilder->weld_entry("ftnsuffix")) , m_xEndNtAtTextEndCB(m_xBuilder->weld_check_button("endntattextend")) @@ -1846,7 +1846,7 @@ SwSectionFootnoteEndTabPage::SwSectionFootnoteEndTabPage(TabPageParent pParent, , m_xEndNtNumFormatCB(m_xBuilder->weld_check_button("endntnumfmt")) , m_xEndPrefixFT(m_xBuilder->weld_label("endprefix_label")) , m_xEndPrefixED(m_xBuilder->weld_entry("endprefix")) - , m_xEndNumViewBox(new NumberingTypeListBox(m_xBuilder->weld_combo_box_text("endnumviewbox"))) + , m_xEndNumViewBox(new SwNumberingTypeListBox(m_xBuilder->weld_combo_box_text("endnumviewbox"))) , m_xEndSuffixFT(m_xBuilder->weld_label("endsuffix_label")) , m_xEndSuffixED(m_xBuilder->weld_entry("endsuffix")) { @@ -1924,7 +1924,7 @@ void SwSectionFootnoteEndTabPage::ResetState( bool bFootnote, weld::CheckButton *pNtAtTextEndCB, *pNtNumCB, *pNtNumFormatCB; weld::Label *pPrefixFT, *pSuffixFT; weld::Entry *pPrefixED, *pSuffixED; - NumberingTypeListBox *pNumViewBox; + SwNumberingTypeListBox *pNumViewBox; weld::Label *pOffsetText; weld::SpinButton *pOffsetField; @@ -2016,7 +2016,7 @@ IMPL_LINK( SwSectionFootnoteEndTabPage, FootEndHdl, weld::ToggleButton&, rBox, v m_xFootnoteNtNumFormatCB.get() == &rBox ; weld::CheckButton *pNumBox, *pNumFormatBox, *pEndBox; - NumberingTypeListBox* pNumViewBox; + SwNumberingTypeListBox* pNumViewBox; weld::Label *pOffsetText; weld::SpinButton *pOffsetField; weld::Label *pPrefixFT, *pSuffixFT; |