[Libreoffice-commits] core.git: sfx2/source
ayhanyalcinsoy (via logerrit)
logerrit at kemper.freedesktop.org
Tue Mar 3 09:04:36 UTC 2020
sfx2/source/doc/templatedlg.cxx | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
New commits:
commit b23183af90996395c19eea5c71c7b2f5640b838b
Author: ayhanyalcinsoy <ayhanyalcinsoy at pisilinux.org>
AuthorDate: Fri Feb 28 23:38:13 2020 +0300
Commit: Heiko Tietze <heiko.tietze at documentfoundation.org>
CommitDate: Tue Mar 3 10:04:02 2020 +0100
tdf#130600:Removed the New Category and Refresh icons from Template dialog
Change-Id: Iad22a84820056f05a3aae6d68f008fe904c56ffa
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89750
Tested-by: Jenkins
Tested-by: Heiko Tietze <heiko.tietze at documentfoundation.org>
Reviewed-by: Heiko Tietze <heiko.tietze at documentfoundation.org>
diff --git a/sfx2/source/doc/templatedlg.cxx b/sfx2/source/doc/templatedlg.cxx
index 592fcd1a45d7..60b18b5795bf 100644
--- a/sfx2/source/doc/templatedlg.cxx
+++ b/sfx2/source/doc/templatedlg.cxx
@@ -174,12 +174,11 @@ SfxTemplateManagerDlg::SfxTemplateManagerDlg(weld::Window *pParent)
, mxLocalViewWeld(new weld::CustomWeld(*m_xBuilder, "template_view", *mxLocalView))
{
// Create popup menus
- OUString sBmp(BMP_ACTION_REFRESH);
- mxActionBar->insert_item(0, MNI_ACTION_NEW_FOLDER, SfxResId(STR_CATEGORY_NEW), &sBmp, nullptr, TRISTATE_INDET);
+ mxActionBar->insert_item(0, MNI_ACTION_NEW_FOLDER, SfxResId(STR_CATEGORY_NEW), nullptr, nullptr, TRISTATE_INDET);
mxActionBar->insert_item(1, MNI_ACTION_RENAME_FOLDER, SfxResId(STR_CATEGORY_RENAME), nullptr, nullptr, TRISTATE_INDET);
mxActionBar->insert_item(2, MNI_ACTION_DELETE_FOLDER, SfxResId(STR_CATEGORY_DELETE), nullptr, nullptr, TRISTATE_INDET);
mxActionBar->insert_separator(3, "separator");
- mxActionBar->insert_item(4, MNI_ACTION_REFRESH, SfxResId(STR_ACTION_REFRESH), &sBmp, nullptr, TRISTATE_INDET);
+ mxActionBar->insert_item(4, MNI_ACTION_REFRESH, SfxResId(STR_ACTION_REFRESH), nullptr, nullptr, TRISTATE_INDET);
mxActionBar->connect_selected(LINK(this,SfxTemplateManagerDlg,MenuSelectHdl));
mxLocalView->setItemMaxTextLength(TEMPLATE_ITEM_MAX_TEXT_LENGTH);
More information about the Libreoffice-commits
mailing list