cppcheck: noExplicitConstructor
Change-Id: I9510a16bf4ac5dd2c3da16c618841918daea8cfb
This commit is contained in:
@@ -111,8 +111,10 @@ public:
|
|||||||
class LibLBoxString : public SvLBoxString
|
class LibLBoxString : public SvLBoxString
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
LibLBoxString( const OUString& rTxt ) :
|
explicit LibLBoxString(const OUString& rTxt)
|
||||||
SvLBoxString( rTxt ) {}
|
: SvLBoxString(rTxt)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
virtual void Paint(const Point& rPos, SvTreeListBox& rDev, vcl::RenderContext& rRenderContext,
|
virtual void Paint(const Point& rPos, SvTreeListBox& rDev, vcl::RenderContext& rRenderContext,
|
||||||
const SvViewDataEntry* pView, const SvTreeListEntry& rEntry) override;
|
const SvViewDataEntry* pView, const SvTreeListEntry& rEntry) override;
|
||||||
|
@@ -634,7 +634,7 @@ static long AccCfgTabs[] =
|
|||||||
class SfxAccCfgLBoxString_Impl : public SvLBoxString
|
class SfxAccCfgLBoxString_Impl : public SvLBoxString
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
SfxAccCfgLBoxString_Impl(const OUString& sText);
|
explicit SfxAccCfgLBoxString_Impl(const OUString& sText);
|
||||||
|
|
||||||
virtual ~SfxAccCfgLBoxString_Impl();
|
virtual ~SfxAccCfgLBoxString_Impl();
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user