diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-08-31 14:52:15 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-09-01 08:54:20 +0200 |
commit | eb9d34dadbf78fd09ff39ba46d0e48c6ae9f9940 (patch) | |
tree | bb92a427ba201b8a0ce81faa42391db30e33e90c /cui | |
parent | 5d0860ed0600904a03459e8bf5a6792c671463a4 (diff) |
clang-tidy:readability-redundant-member-init
Change-Id: I2fc0a1f5a637b3228d8f49ecd0e0769d6872cdc6
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121375
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/customize/acccfg.cxx | 3 | ||||
-rw-r--r-- | cui/source/dialogs/screenshotannotationdlg.cxx | 2 | ||||
-rw-r--r-- | cui/source/dialogs/thesdlg.cxx | 1 | ||||
-rw-r--r-- | cui/source/options/optaboutconfig.cxx | 1 | ||||
-rw-r--r-- | cui/source/options/optgdlg.cxx | 1 |
5 files changed, 0 insertions, 8 deletions
diff --git a/cui/source/customize/acccfg.cxx b/cui/source/customize/acccfg.cxx index 2701e7204f34..98f965a6ce9e 100644 --- a/cui/source/customize/acccfg.cxx +++ b/cui/source/customize/acccfg.cxx @@ -834,9 +834,6 @@ SfxAcceleratorConfigPage::SfxAcceleratorConfigPage(weld::Container* pPage, , aFilterAllStr(SfxResId(STR_SFX_FILTERNAME_ALL)) , aFilterCfgStr(CuiResId(RID_SVXSTR_FILTERNAME_CFG)) , m_bStylesInfoInitialized(false) - , m_xGlobal() - , m_xModule() - , m_xAct() , m_aUpdateDataTimer("UpdateDataTimer") , m_xEntriesBox(m_xBuilder->weld_tree_view("shortcuts")) , m_xOfficeButton(m_xBuilder->weld_radio_button("office")) diff --git a/cui/source/dialogs/screenshotannotationdlg.cxx b/cui/source/dialogs/screenshotannotationdlg.cxx index bdae7f003b8d..802453d2206c 100644 --- a/cui/source/dialogs/screenshotannotationdlg.cxx +++ b/cui/source/dialogs/screenshotannotationdlg.cxx @@ -200,9 +200,7 @@ ScreenshotAnnotationDlg_Impl::ScreenshotAnnotationDlg_Impl( : mpParentWindow(pParent), mrParentDialog(rParentDialog), mxVirtualBufferDevice(nullptr), - maAllChildren(), mpHilighted(nullptr), - maSelected(), maPicture(this), maSaveAsText(CuiResId(RID_SVXSTR_SAVE_SCREENSHOT_AS)) { diff --git a/cui/source/dialogs/thesdlg.cxx b/cui/source/dialogs/thesdlg.cxx index 19580b007616..a9f4883f4c70 100644 --- a/cui/source/dialogs/thesdlg.cxx +++ b/cui/source/dialogs/thesdlg.cxx @@ -240,7 +240,6 @@ SvxThesaurusDialog::SvxThesaurusDialog( LanguageType nLanguage) : SfxDialogController(pParent, "cui/ui/thesaurus.ui", "ThesaurusDialog") , m_aModifyIdle("cui SvxThesaurusDialog LookUp Modify") - , aLookUpText() , nLookUpLanguage(LANGUAGE_NONE) , m_bWordFound(false) , m_xLeftBtn(m_xBuilder->weld_button("left")) diff --git a/cui/source/options/optaboutconfig.cxx b/cui/source/options/optaboutconfig.cxx index 26e47983f541..39abfbedbadb 100644 --- a/cui/source/options/optaboutconfig.cxx +++ b/cui/source/options/optaboutconfig.cxx @@ -137,7 +137,6 @@ CuiAboutConfigTabPage::CuiAboutConfigTabPage(weld::Window* pParent) , m_xSearchEdit(m_xBuilder->weld_entry("searchEntry")) , m_xPrefBox(m_xBuilder->weld_tree_view("preferences")) , m_xScratchIter(m_xPrefBox->make_iterator()) - , m_vectorOfModified() , m_bSorted(false) { m_xPrefBox->set_size_request(m_xPrefBox->get_approximate_digit_width() * 100, diff --git a/cui/source/options/optgdlg.cxx b/cui/source/options/optgdlg.cxx index b353325f1b53..7f5ad32fce0b 100644 --- a/cui/source/options/optgdlg.cxx +++ b/cui/source/options/optgdlg.cxx @@ -371,7 +371,6 @@ private: }; CanvasSettings::CanvasSettings() : - mxForceFlagNameAccess(), mbHWAccelAvailable(false), mbHWAccelChecked(false) { |