Kaydet (Commit) 03d35062 authored tarafından Caolán McNamara's avatar Caolán McNamara

cppcheck: noExplicitConstructor

Change-Id: I9510a16bf4ac5dd2c3da16c618841918daea8cfb
üst 9fb09a9c
......@@ -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();
......
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