diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-09-07 20:58:25 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-09-08 14:45:11 +0200 |
commit | 2002bbe83de99784e38edc206f83c580e2a7a7a7 (patch) | |
tree | aa94bde0a27a19afebf17b90a718251218366501 /extensions | |
parent | 6d180f09f2d2bdb94e5d2113e509430cf8ba13cc (diff) |
loplugin:simplifyconstruct in editeng..extensions
Change-Id: I646a24382554312d92a4a8746d5267767353a53f
Reviewed-on: https://gerrit.libreoffice.org/60169
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/abpilot/datasourcehandling.cxx | 1 | ||||
-rw-r--r-- | extensions/source/logging/loghandler.cxx | 1 | ||||
-rw-r--r-- | extensions/source/propctrlr/controlfontdialog.cxx | 1 | ||||
-rw-r--r-- | extensions/source/scanner/grid.cxx | 1 | ||||
-rw-r--r-- | extensions/source/scanner/sane.cxx | 1 | ||||
-rw-r--r-- | extensions/source/scanner/sanedlg.cxx | 1 |
6 files changed, 0 insertions, 6 deletions
diff --git a/extensions/source/abpilot/datasourcehandling.cxx b/extensions/source/abpilot/datasourcehandling.cxx index 847518e1301a..06db84fa0d76 100644 --- a/extensions/source/abpilot/datasourcehandling.cxx +++ b/extensions/source/abpilot/datasourcehandling.cxx @@ -307,7 +307,6 @@ namespace abp ODataSource::ODataSource( const ODataSource& _rSource ) - :m_pImpl( nullptr ) { *this = _rSource; } diff --git a/extensions/source/logging/loghandler.cxx b/extensions/source/logging/loghandler.cxx index 7ecf7ab4a05d..d2a49e24a0ab 100644 --- a/extensions/source/logging/loghandler.cxx +++ b/extensions/source/logging/loghandler.cxx @@ -48,7 +48,6 @@ namespace logging LogHandlerHelper::LogHandlerHelper( const Reference< XComponentContext >& _rxContext, ::osl::Mutex& _rMutex, ::cppu::OBroadcastHelper& _rBHelper ) :m_eEncoding( RTL_TEXTENCODING_UTF8 ) ,m_nLevel( LogLevel::SEVERE ) - ,m_xFormatter( nullptr ) ,m_xContext( _rxContext ) ,m_rMutex( _rMutex ) ,m_rBHelper( _rBHelper ) diff --git a/extensions/source/propctrlr/controlfontdialog.cxx b/extensions/source/propctrlr/controlfontdialog.cxx index b320830ebe7d..821c9ccbb722 100644 --- a/extensions/source/propctrlr/controlfontdialog.cxx +++ b/extensions/source/propctrlr/controlfontdialog.cxx @@ -41,7 +41,6 @@ namespace pcr OControlFontDialog::OControlFontDialog(const Reference< XComponentContext >& _rxContext ) :OGenericUnoDialog( _rxContext ) - ,m_pFontItems(nullptr) ,m_pItemPool(nullptr) ,m_pItemPoolDefaults(nullptr) { diff --git a/extensions/source/scanner/grid.cxx b/extensions/source/scanner/grid.cxx index b6be058570e9..f976aed6e789 100644 --- a/extensions/source/scanner/grid.cxx +++ b/extensions/source/scanner/grid.cxx @@ -149,7 +149,6 @@ GridWindow::GridWindow(vcl::Window* pParent) , m_pXValues(nullptr) , m_pOrigYValues(nullptr) , m_nValues(0) - , m_pNewYValues(nullptr) , m_BmOffX(0) , m_BmOffY(0) , m_bCutValues(false) diff --git a/extensions/source/scanner/sane.cxx b/extensions/source/scanner/sane.cxx index fb02a8417252..0be0c0a19d93 100644 --- a/extensions/source/scanner/sane.cxx +++ b/extensions/source/scanner/sane.cxx @@ -150,7 +150,6 @@ SANE_Status Sane::ControlOption( int nOption, SANE_Action nAction, } Sane::Sane() : - mppOptions( nullptr ), mnOptions( 0 ), mnDevice( -1 ), maHandle( nullptr ) diff --git a/extensions/source/scanner/sanedlg.cxx b/extensions/source/scanner/sanedlg.cxx index 3df7b4b40e08..a73033579796 100644 --- a/extensions/source/scanner/sanedlg.cxx +++ b/extensions/source/scanner/sanedlg.cxx @@ -211,7 +211,6 @@ SaneDlg::SaneDlg( vcl::Window* pParent, Sane& rSane, bool bScanEnabled ) : mbScanEnabled( bScanEnabled ), mnCurrentOption(0), mnCurrentElement(0), - mpRange(nullptr), mfMin(0.0), mfMax(0.0), doScan(false) |