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