summaryrefslogtreecommitdiff
path: root/sw/source/uibase/inc/dbui.hxx
diff options
context:
space:
mode:
authorPhilipp Hofer <philipp.hofer@protonmail.com>2020-11-12 13:21:51 +0100
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2020-11-19 01:33:36 +0100
commit695280feb90729fde1a7ecf1c409ae16f8281a46 (patch)
tree5591cb26f9546599b573ba49427b13bc5332b86f /sw/source/uibase/inc/dbui.hxx
parenta930f12c30f31d306ba60c5344cd8308d9fa4ee1 (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/uibase/inc/dbui.hxx')
-rw-r--r--sw/source/uibase/inc/dbui.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/sw/source/uibase/inc/dbui.hxx b/sw/source/uibase/inc/dbui.hxx
index 38ace352a2cd..ea42bb44da13 100644
--- a/sw/source/uibase/inc/dbui.hxx
+++ b/sw/source/uibase/inc/dbui.hxx
@@ -23,14 +23,14 @@
#include <swdllapi.h>
-class PrintMonitor: public weld::GenericDialogController
+class PrintMonitor : public weld::GenericDialogController
{
public:
std::unique_ptr<weld::Label> m_xDocName;
std::unique_ptr<weld::Label> m_xPrinter;
std::unique_ptr<weld::Label> m_xPrintInfo;
- PrintMonitor(weld::Window *pParent);
+ PrintMonitor(weld::Window* pParent);
virtual ~PrintMonitor() override;
};
@@ -41,26 +41,26 @@ public:
std::unique_ptr<weld::Label> m_xPrinter;
std::unique_ptr<weld::Label> m_xPrintInfo;
- SaveMonitor(weld::Window *pParent);
+ SaveMonitor(weld::Window* pParent);
virtual ~SaveMonitor() override;
};
class CreateMonitor : public weld::GenericDialogController
{
public:
- CreateMonitor(weld::Window *pParent);
+ CreateMonitor(weld::Window* pParent);
virtual ~CreateMonitor() override;
- void SetTotalCount( sal_Int32 nTotal );
- void SetCurrentPosition( sal_Int32 nCurrent );
+ void SetTotalCount(sal_Int32 nTotal);
+ void SetCurrentPosition(sal_Int32 nCurrent);
private:
void UpdateCountingText();
private:
- OUString m_sCountingPattern;
- sal_Int32 m_nTotalCount;
- sal_Int32 m_nCurrentPosition;
+ OUString m_sCountingPattern;
+ sal_Int32 m_nTotalCount;
+ sal_Int32 m_nCurrentPosition;
std::unique_ptr<weld::Label> m_xCounting;
};