Kaydet (Commit) 8f6ce60f authored tarafından Caolán McNamara's avatar Caolán McNamara

cppcheck: noExplicitConstructor

Change-Id: I2bd2fd9c5768128130659213305b7da04686125a
Reviewed-on: https://gerrit.libreoffice.org/26000Reviewed-by: 's avatarCaolán McNamara <caolanm@redhat.com>
Tested-by: 's avatarCaolán McNamara <caolanm@redhat.com>
üst 71bdc1d9
...@@ -29,16 +29,13 @@ ...@@ -29,16 +29,13 @@
class Node; class Node;
// DVO: remove DEBUG dependency
// #ifndef DEBUG
using namespace ::com::sun::star::xml::sax; using namespace ::com::sun::star::xml::sax;
// #endif
class Formula class Formula
{ {
public: public:
Formula(char *_eq) explicit Formula(char *_eq)
: pList(NULL) : pList(nullptr)
{ {
eq = _eq; eq = _eq;
isHwpEQ = 1; isHwpEQ = 1;
......
...@@ -169,7 +169,7 @@ private: ...@@ -169,7 +169,7 @@ private:
public: public:
explicit ScDocShell( const ScDocShell& rDocShell ); explicit ScDocShell( const ScDocShell& rDocShell );
ScDocShell( const SfxModelFlags i_nSfxCreationFlags = SfxModelFlags::EMBEDDED_OBJECT ); explicit ScDocShell( const SfxModelFlags i_nSfxCreationFlags = SfxModelFlags::EMBEDDED_OBJECT );
virtual ~ScDocShell(); virtual ~ScDocShell();
#if ENABLE_TELEPATHY #if ENABLE_TELEPATHY
......
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