mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-27 02:47:31 +09:00
Bug 1487082 - Resolve potential for build bustage regarding bad implicit conversion constructors
* Part 1: make conversion CTORs explicit. Minor tweaks to conform with new(ish) static analysis rule which flags up implicit single-argument conversion constructors. * Part 2: fix a couple of double-mRefCnt declaration errors. * Part 3: Fix unsafe use of NS_ConvertASCIItoUTF16(). Tag #1273
This commit is contained in:
parent
73af2ce033
commit
eaac1c967d
57 changed files with 71 additions and 69 deletions
|
|
@ -20,7 +20,7 @@
|
|||
class nsMsgResultElement
|
||||
{
|
||||
public:
|
||||
nsMsgResultElement (nsIMsgSearchAdapter *);
|
||||
explicit nsMsgResultElement (nsIMsgSearchAdapter *);
|
||||
virtual ~nsMsgResultElement ();
|
||||
|
||||
static nsresult AssignValues (nsIMsgSearchValue *src, nsMsgSearchValue *dst);
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ class nsMsgSearchBoolExpression
|
|||
public:
|
||||
|
||||
// create a leaf node expression
|
||||
nsMsgSearchBoolExpression(nsIMsgSearchTerm * aNewTerm,
|
||||
explicit nsMsgSearchBoolExpression(nsIMsgSearchTerm * aNewTerm,
|
||||
char * aEncodingString = NULL);
|
||||
|
||||
// create a non-leaf node expression containing 2 expressions
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
class nsMsgSearchValueImpl : public nsIMsgSearchValue {
|
||||
public:
|
||||
nsMsgSearchValueImpl(nsMsgSearchValue *aInitialValue);
|
||||
explicit nsMsgSearchValueImpl(nsMsgSearchValue *aInitialValue);
|
||||
|
||||
NS_DECL_ISUPPORTS
|
||||
NS_DECL_NSIMSGSEARCHVALUE
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue