Kaydet (Commit) 19053e62 authored tarafından Caolán McNamara's avatar Caolán McNamara

cppcheck: noExplicitConstructor

Change-Id: I2d629c48b6526fa5f37174921c068e1201a897ef
üst a952bf82
......@@ -65,7 +65,7 @@ class ResolverImpl : public WeakImplHelper2< XServiceInfo, XUnoUrlResolver >
Reference< XComponentContext > _xCtx;
public:
ResolverImpl( const Reference< XComponentContext > & xSMgr );
explicit ResolverImpl( const Reference< XComponentContext > & xSMgr );
virtual ~ResolverImpl();
// XServiceInfo
......
......@@ -528,7 +528,7 @@ struct OReportDefinitionImpl
bool m_bEscapeProcessing;
bool m_bSetModifiedEnabled;
OReportDefinitionImpl(::osl::Mutex& _aMutex)
explicit OReportDefinitionImpl(::osl::Mutex& _aMutex)
:m_aStorageChangeListeners(_aMutex)
,m_aCloseListener(_aMutex)
,m_aModifyListeners(_aMutex)
......@@ -2298,7 +2298,7 @@ class OStylesHelper:
protected:
virtual ~OStylesHelper(){}
public:
OStylesHelper(const uno::Type& rType = cppu::UnoType<container::XElementAccess>::get());
explicit OStylesHelper(const uno::Type& rType = cppu::UnoType<container::XElementAccess>::get());
// XNameContainer
virtual void SAL_CALL insertByName( const OUString& aName, const uno::Any& aElement ) throw(lang::IllegalArgumentException, container::ElementExistException,lang::WrappedTargetException, uno::RuntimeException, std::exception) SAL_OVERRIDE;
......
......@@ -66,7 +66,7 @@ struct PropertyInfo
{
bool bIsReadonlyOrTransient;
PropertyInfo( const bool i_bIsTransientOrReadOnly )
explicit PropertyInfo( const bool i_bIsTransientOrReadOnly )
:bIsReadonlyOrTransient( i_bIsTransientOrReadOnly )
{
}
......@@ -104,7 +104,7 @@ public:
bool m_bReadOnly;
bool m_bIsUndo;
OXUndoEnvironmentImpl(OReportModel& _rModel);
explicit OXUndoEnvironmentImpl(OReportModel& _rModel);
};
OXUndoEnvironmentImpl::OXUndoEnvironmentImpl(OReportModel& _rModel) : m_rModel(_rModel)
......
......@@ -60,7 +60,7 @@ namespace rptui
bool m_bFieldListDirty;
public:
FormatNormalizer( const OReportModel& _rModel );
explicit FormatNormalizer( const OReportModel& _rModel );
~FormatNormalizer();
void notifyPropertyChange( const ::com::sun::star::beans::PropertyChangeEvent& _rEvent );
......
......@@ -68,7 +68,7 @@ namespace rptxml
{
::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > m_xContext;
public:
ORptTypeDetection(::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & xContext);
explicit ORptTypeDetection(::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const & xContext);
// XServiceInfo
OUString SAL_CALL getImplementationName() throw(std::exception ) SAL_OVERRIDE;
......
......@@ -43,7 +43,7 @@ namespace rptxml
OXMLAutoStylePoolP(const OXMLAutoStylePoolP&) SAL_DELETED_FUNCTION;
void operator =(const OXMLAutoStylePoolP&) SAL_DELETED_FUNCTION;
public:
OXMLAutoStylePoolP(ORptExport& rXMLExport);
explicit OXMLAutoStylePoolP(ORptExport& rXMLExport);
virtual ~OXMLAutoStylePoolP();
};
......
......@@ -164,7 +164,7 @@ namespace rptxml
class OSpecialHandleXMLExportPropertyMapper : public SvXMLExportPropertyMapper
{
public:
OSpecialHandleXMLExportPropertyMapper(const rtl::Reference< XMLPropertySetMapper >& rMapper) : SvXMLExportPropertyMapper(rMapper )
explicit OSpecialHandleXMLExportPropertyMapper(const rtl::Reference< XMLPropertySetMapper >& rMapper) : SvXMLExportPropertyMapper(rMapper )
{
}
/** this method is called for every item that has the
......
......@@ -65,7 +65,7 @@ class OAddFieldWindowListBox: public SvTreeListBox
VclPtr<OAddFieldWindow> m_pTabWin;
public:
OAddFieldWindowListBox( OAddFieldWindow* _pParent );
explicit OAddFieldWindowListBox( OAddFieldWindow* _pParent );
virtual ~OAddFieldWindowListBox();
virtual void dispose() SAL_OVERRIDE;
......
......@@ -69,7 +69,7 @@ namespace rptui
vcl::Window& m_rWindow;
public:
UpdateLocker( vcl::Window& _rWindow )
explicit UpdateLocker( vcl::Window& _rWindow )
:m_rWindow( _rWindow )
{
_rWindow.SetUpdateMode( false );
......
......@@ -32,7 +32,7 @@ namespace rptui
{
::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any> m_aGroupRow;
public:
OGroupExchange(const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any>& _aGroupRow);
explicit OGroupExchange(const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any>& _aGroupRow);
static SotClipboardFormatId getReportGroupId();
protected:
......
......@@ -85,7 +85,7 @@ class OFieldExpressionControlContainerListener : public ::cppu::WeakImplHelper1<
{
VclPtr<OFieldExpressionControl> mpParent;
public:
OFieldExpressionControlContainerListener(OFieldExpressionControl* pParent) : mpParent(pParent) {}
explicit OFieldExpressionControlContainerListener(OFieldExpressionControl* pParent) : mpParent(pParent) {}
// XEventListener
virtual void SAL_CALL disposing(const ::com::sun::star::lang::EventObject& Source) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
......
......@@ -61,7 +61,7 @@ class OTaskWindow : public vcl::Window
{
VclPtr<PropBrw> m_pPropWin;
public:
OTaskWindow(vcl::Window* _pParent) : Window(_pParent),m_pPropWin(NULL){}
explicit OTaskWindow(vcl::Window* _pParent) : Window(_pParent),m_pPropWin(NULL){}
virtual ~OTaskWindow() { disposeOnce(); }
virtual void dispose() SAL_OVERRIDE { m_pPropWin.clear(); vcl::Window::dispose(); }
......
......@@ -57,7 +57,7 @@ public:
oslInterlockedCount m_nLocks;
bool m_bReadOnly;
OXReportControllerObserverImpl(const OReportController& _rController);
explicit OXReportControllerObserverImpl(const OReportController& _rController);
~OXReportControllerObserverImpl();
};
......
......@@ -958,13 +958,13 @@ namespace
bool m_bCopy;
public:
ApplySectionViewAction(bool _bCopy)
explicit ApplySectionViewAction(bool _bCopy)
: m_eAction(eEndDragObj)
, m_bCopy(_bCopy)
{
}
ApplySectionViewAction(SectionViewAction _eAction = eEndAction)
explicit ApplySectionViewAction(SectionViewAction _eAction = eEndAction)
: m_eAction(_eAction)
, m_bCopy(false)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment