summaryrefslogtreecommitdiffstats
path: root/chart2/source/controller/dialogs/res_BarGeometry.cxx
diff options
context:
space:
mode:
authorPhilipp Hofer <philipp.hofer@protonmail.com>2020-11-12 12:50:27 +0100
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2020-11-22 01:57:32 +0100
commit79b6055acd1ea27a9f054e6980abbe2024cdc4a2 (patch)
tree1f441f303313ef5500e4b24a596c33640837b787 /chart2/source/controller/dialogs/res_BarGeometry.cxx
parenttdf#123936 Formatting files in module configmgr with clang-format (diff)
downloadcore-79b6055acd1ea27a9f054e6980abbe2024cdc4a2.tar.gz
core-79b6055acd1ea27a9f054e6980abbe2024cdc4a2.zip
tdf#123936 Formatting files in module chart2 with clang-format
Change-Id: Ie4dea73190040e5716fe531cf35fae20d7e175db Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105650 Tested-by: Jenkins Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Diffstat (limited to 'chart2/source/controller/dialogs/res_BarGeometry.cxx')
-rw-r--r--chart2/source/controller/dialogs/res_BarGeometry.cxx15
1 files changed, 7 insertions, 8 deletions
diff --git a/chart2/source/controller/dialogs/res_BarGeometry.cxx b/chart2/source/controller/dialogs/res_BarGeometry.cxx
index 6b0a7eac2208..da48f4ca608a 100644
--- a/chart2/source/controller/dialogs/res_BarGeometry.cxx
+++ b/chart2/source/controller/dialogs/res_BarGeometry.cxx
@@ -23,7 +23,6 @@
namespace chart
{
-
BarGeometryResources::BarGeometryResources(weld::Builder* pBuilder)
: m_xFT_Geometry(pBuilder->weld_label("shapeft"))
, m_xLB_Geometry(pBuilder->weld_tree_view("shape"))
@@ -33,21 +32,21 @@ BarGeometryResources::BarGeometryResources(weld::Builder* pBuilder)
m_xLB_Geometry->set_size_request(-1, m_xLB_Geometry->get_height_rows(4));
}
-void BarGeometryResources::connect_changed(const Link<weld::TreeView&,void>& rLink)
+void BarGeometryResources::connect_changed(const Link<weld::TreeView&, void>& rLink)
{
m_xLB_Geometry->connect_changed(rLink);
}
-void BarGeometryResources::set_visible( bool bShow )
+void BarGeometryResources::set_visible(bool bShow)
{
- m_xFT_Geometry->set_visible( bShow );
- m_xLB_Geometry->set_visible( bShow );
+ m_xFT_Geometry->set_visible(bShow);
+ m_xLB_Geometry->set_visible(bShow);
}
-void BarGeometryResources::set_sensitive( bool bEnable )
+void BarGeometryResources::set_sensitive(bool bEnable)
{
- m_xFT_Geometry->set_sensitive( bEnable );
- m_xLB_Geometry->set_sensitive( bEnable );
+ m_xFT_Geometry->set_sensitive(bEnable);
+ m_xLB_Geometry->set_sensitive(bEnable);
}
sal_Int32 BarGeometryResources::get_selected_index() const