cppcheck: noExplicitConstructor
Change-Id: Ie25240030fd848a5b30526746206bfd5fe543091
This commit is contained in:
@@ -44,7 +44,7 @@ class AccessibleChartShape :
|
|||||||
public impl::AccessibleChartShape_Base
|
public impl::AccessibleChartShape_Base
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
AccessibleChartShape( const AccessibleElementInfo& rAccInfo );
|
explicit AccessibleChartShape( const AccessibleElementInfo& rAccInfo );
|
||||||
virtual ~AccessibleChartShape();
|
virtual ~AccessibleChartShape();
|
||||||
|
|
||||||
// ________ XServiceInfo ________
|
// ________ XServiceInfo ________
|
||||||
|
@@ -28,7 +28,7 @@ class LineWidthValueSet
|
|||||||
: public ValueSet
|
: public ValueSet
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
LineWidthValueSet(vcl::Window* pParent);
|
explicit LineWidthValueSet(vcl::Window* pParent);
|
||||||
virtual ~LineWidthValueSet();
|
virtual ~LineWidthValueSet();
|
||||||
virtual void dispose() override;
|
virtual void dispose() override;
|
||||||
|
|
||||||
|
@@ -81,7 +81,7 @@ struct SortListData
|
|||||||
sal_IntPtr mnCurPos;
|
sal_IntPtr mnCurPos;
|
||||||
sal_IntPtr mnOldPos;
|
sal_IntPtr mnOldPos;
|
||||||
|
|
||||||
SortListData( sal_IntPtr nPos );
|
explicit SortListData( sal_IntPtr nPos );
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@@ -24,7 +24,7 @@ struct Node
|
|||||||
std::unique_ptr<Node> mRightNode;
|
std::unique_ptr<Node> mRightNode;
|
||||||
bool mOccupied;
|
bool mOccupied;
|
||||||
|
|
||||||
Node(Rectangle& aRectangle);
|
explicit Node(Rectangle& rRectangle);
|
||||||
|
|
||||||
bool isLeaf();
|
bool isLeaf();
|
||||||
Node* insert(int nWidth, int nHeight, int nPadding);
|
Node* insert(int nWidth, int nHeight, int nPadding);
|
||||||
|
Reference in New Issue
Block a user