diff options
author | Philipp Hofer <philipp.hofer@protonmail.com> | 2020-11-12 13:21:51 +0100 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2020-11-19 01:33:36 +0100 |
commit | 695280feb90729fde1a7ecf1c409ae16f8281a46 (patch) | |
tree | 5591cb26f9546599b573ba49427b13bc5332b86f /sw/source/ui/envelp/envprt.hxx | |
parent | a930f12c30f31d306ba60c5344cd8308d9fa4ee1 (diff) |
tdf#123936 Formatting files in module sw with clang-format
Change-Id: I6243bc95129bf81a124d006ce0fc1aa1b5f618bb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105718
Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Tested-by: Jenkins
Diffstat (limited to 'sw/source/ui/envelp/envprt.hxx')
-rw-r--r-- | sw/source/ui/envelp/envprt.hxx | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/sw/source/ui/envelp/envprt.hxx b/sw/source/ui/envelp/envprt.hxx index 00a610cad3e9..4fde994f6eeb 100644 --- a/sw/source/ui/envelp/envprt.hxx +++ b/sw/source/ui/envelp/envprt.hxx @@ -37,30 +37,32 @@ class SwEnvPrtPage : public SfxTabPage std::unique_ptr<weld::RadioButton> m_xBottomButton; std::unique_ptr<weld::MetricSpinButton> m_xRightField; std::unique_ptr<weld::MetricSpinButton> m_xDownField; - std::unique_ptr<weld::Label> m_xPrinterInfo; - std::unique_ptr<weld::Button> m_xPrtSetup; + std::unique_ptr<weld::Label> m_xPrinterInfo; + std::unique_ptr<weld::Button> m_xPrtSetup; - std::unique_ptr<weld::RadioButton> m_aIdsL[ENV_VER_RGHT-ENV_HOR_LEFT+1]; - std::unique_ptr<weld::RadioButton> m_aIdsU[ENV_VER_RGHT-ENV_HOR_LEFT+1]; + std::unique_ptr<weld::RadioButton> m_aIdsL[ENV_VER_RGHT - ENV_HOR_LEFT + 1]; + std::unique_ptr<weld::RadioButton> m_aIdsU[ENV_VER_RGHT - ENV_HOR_LEFT + 1]; - VclPtr<Printer> m_xPrt; + VclPtr<Printer> m_xPrt; DECL_LINK(LowerHdl, weld::ToggleButton&, void); DECL_LINK(UpperHdl, weld::ToggleButton&, void); DECL_LINK(ClickHdl, weld::ToggleButton&, void); - DECL_LINK(ButtonHdl, weld::Button&, void ); + DECL_LINK(ButtonHdl, weld::Button&, void); - SwEnvDlg* GetParentSwEnvDlg() {return static_cast<SwEnvDlg*>(GetDialogController()); } + SwEnvDlg* GetParentSwEnvDlg() { return static_cast<SwEnvDlg*>(GetDialogController()); } public: - SwEnvPrtPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rSet); + SwEnvPrtPage(weld::Container* pPage, weld::DialogController* pController, + const SfxItemSet& rSet); virtual ~SwEnvPrtPage() override; - static std::unique_ptr<SfxTabPage> Create(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet* rSet); + static std::unique_ptr<SfxTabPage> + Create(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet* rSet); virtual void ActivatePage(const SfxItemSet& rSet) override; virtual DeactivateRC DeactivatePage(SfxItemSet* pSet) override; - void FillItem(SwEnvItem& rItem); + void FillItem(SwEnvItem& rItem); virtual bool FillItemSet(SfxItemSet* rSet) override; virtual void Reset(const SfxItemSet* rSet) override; |