[Libreoffice-commits] core.git: sc/source
Andrea Gelmini (via logerrit)
logerrit at kemper.freedesktop.org
Sun Aug 23 10:38:01 UTC 2020
sc/source/ui/sidebar/NumberFormatPropertyPanel.cxx | 4 ++--
sc/source/ui/sidebar/NumberFormatPropertyPanel.hxx | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
New commits:
commit b2db71558c9c8ff5227c28f866e2c1657d6d64fb
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Sat Aug 22 23:05:05 2020 +0200
Commit: Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Sun Aug 23 12:37:25 2020 +0200
Fix typo in code
Change-Id: Ib71904ffeffba9c2987fab204f37e088e0947be2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101216
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
diff --git a/sc/source/ui/sidebar/NumberFormatPropertyPanel.cxx b/sc/source/ui/sidebar/NumberFormatPropertyPanel.cxx
index 324ebe8f8171..12fc841dc6a1 100644
--- a/sc/source/ui/sidebar/NumberFormatPropertyPanel.cxx
+++ b/sc/source/ui/sidebar/NumberFormatPropertyPanel.cxx
@@ -37,7 +37,7 @@ NumberFormatPropertyPanel::NumberFormatPropertyPanel(
: PanelLayout(pParent,"NumberFormatPropertyPanel", "modules/scalc/ui/sidebarnumberformat.ui", rxFrame)
, mxLbCategory(m_xBuilder->weld_combo_box("numberformatcombobox"))
, mxTBCategory(m_xBuilder->weld_toolbar("numberformat"))
- , mxCatagoryDispatch(new ToolbarUnoDispatcher(*mxTBCategory, *m_xBuilder, rxFrame))
+ , mxCategoryDispatch(new ToolbarUnoDispatcher(*mxTBCategory, *m_xBuilder, rxFrame))
, mxFtDecimals(m_xBuilder->weld_label("decimalplaceslabel"))
, mxEdDecimals(m_xBuilder->weld_spin_button("decimalplaces"))
, mxFtDenominator(m_xBuilder->weld_label("denominatorplaceslabel"))
@@ -64,7 +64,7 @@ NumberFormatPropertyPanel::~NumberFormatPropertyPanel()
void NumberFormatPropertyPanel::dispose()
{
mxLbCategory.reset();
- mxCatagoryDispatch.reset();
+ mxCategoryDispatch.reset();
mxTBCategory.reset();
mxFtDecimals.reset();
mxEdDecimals.reset();
diff --git a/sc/source/ui/sidebar/NumberFormatPropertyPanel.hxx b/sc/source/ui/sidebar/NumberFormatPropertyPanel.hxx
index 4eb246dfc7ac..685a02ac23d2 100644
--- a/sc/source/ui/sidebar/NumberFormatPropertyPanel.hxx
+++ b/sc/source/ui/sidebar/NumberFormatPropertyPanel.hxx
@@ -67,7 +67,7 @@ private:
//ui controls
std::unique_ptr<weld::ComboBox> mxLbCategory;
std::unique_ptr<weld::Toolbar> mxTBCategory;
- std::unique_ptr<ToolbarUnoDispatcher> mxCatagoryDispatch;
+ std::unique_ptr<ToolbarUnoDispatcher> mxCategoryDispatch;
std::unique_ptr<weld::Label> mxFtDecimals;
std::unique_ptr<weld::SpinButton> mxEdDecimals;
std::unique_ptr<weld::Label> mxFtDenominator;
More information about the Libreoffice-commits
mailing list