diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-03-03 19:53:22 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-03-03 22:13:38 +0100 |
commit | 5e73afe96a1a1f5444683c210fa31e1c30826675 (patch) | |
tree | 9e4ad0453dd8698f967dd3a3a0c5caa7b08c85df /cui/source/customize | |
parent | 1d9c7ec1f1bfe527fe83edb6afd3c924d0243328 (diff) |
can rename CuiMacroEventListBox back to MacroEventListBox now
Change-Id: I2f88488e7bb931238a31eb62f616c33c60c7ec2e
Reviewed-on: https://gerrit.libreoffice.org/68650
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'cui/source/customize')
-rw-r--r-- | cui/source/customize/macropg.cxx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/cui/source/customize/macropg.cxx b/cui/source/customize/macropg.cxx index ec69a666e477..986909a84d85 100644 --- a/cui/source/customize/macropg.cxx +++ b/cui/source/customize/macropg.cxx @@ -60,17 +60,13 @@ SvxMacroTabPage_Impl::SvxMacroTabPage_Impl( const SfxItemSet& rAttrSet ) bIDEDialogMode = static_cast<const SfxBoolItem*>(pItem)->GetValue(); } -CuiMacroEventListBox::CuiMacroEventListBox(std::unique_ptr<weld::TreeView> xTreeView) +MacroEventListBox::MacroEventListBox(std::unique_ptr<weld::TreeView> xTreeView) : m_xTreeView(std::move(xTreeView)) { m_xTreeView->set_help_id(HID_MACRO_HEADERTABLISTBOX); m_xTreeView->set_size_request(m_xTreeView->get_approximate_digit_width() * 70, m_xTreeView->get_height_rows(9)); } -CuiMacroEventListBox::~CuiMacroEventListBox() -{ -} - // assign button ("Add Command") is enabled only if it is not read only // delete button ("Remove Command") is enabled if a current binding exists // and it is not read only |