summaryrefslogtreecommitdiff
path: root/sw/source/filter/inc/msfilter.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-05-26 13:56:20 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-05-26 14:11:12 +0100
commitd2275c825d2300f3f176105058ac70b762bcc115 (patch)
treef8d373a15f7ec3d2e37fb33999d059b5592e3b76 /sw/source/filter/inc/msfilter.hxx
parent8790303b4c220d0c5dcf78a4c438a385ffe3f030 (diff)
cppcheck: noExplicitConstructor
Change-Id: I955b04396d27e88ce228f180275955071da83ec6
Diffstat (limited to 'sw/source/filter/inc/msfilter.hxx')
-rw-r--r--sw/source/filter/inc/msfilter.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/source/filter/inc/msfilter.hxx b/sw/source/filter/inc/msfilter.hxx
index 069e6b6ec1d6..8c9dc5d87755 100644
--- a/sw/source/filter/inc/msfilter.hxx
+++ b/sw/source/filter/inc/msfilter.hxx
@@ -184,7 +184,7 @@ namespace sw
//I hate these things stupid pImpl things, but its warranted here
ParaMapper *mpImpl;
public:
- ParaStyleMapper(SwDoc &rDoc);
+ explicit ParaStyleMapper(SwDoc &rDoc);
~ParaStyleMapper();
/** StyleResult
@@ -244,7 +244,7 @@ namespace sw
//I hate these things stupid pImpl things, but its warranted here
CharMapper *mpImpl;
public:
- CharStyleMapper(SwDoc &rDoc);
+ explicit CharStyleMapper(SwDoc &rDoc);
~CharStyleMapper();
/** StyleResult
@@ -290,13 +290,13 @@ namespace sw
public:
OUString msPrimary;
OUString msSecondary;
- FontMapExport(const OUString &rFontDescription);
+ explicit FontMapExport(const OUString &rFontDescription);
};
class InsertedTableClient : public SwClient
{
public:
- InsertedTableClient(SwTableNode & rNode);
+ explicit InsertedTableClient(SwTableNode & rNode);
SwTableNode * GetTableNode();
};
@@ -326,7 +326,7 @@ namespace sw
typedef TableMap::iterator TableMapIter;
void DelAndMakeTableFrms();
void InsertTable(SwTableNode &rTableNode, SwPaM &rPaM);
- InsertedTablesManager(const SwDoc &rDoc);
+ explicit InsertedTablesManager(const SwDoc &rDoc);
private:
bool mbHasRoot;
TableMap maTables;