mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-23 00: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
|
|
@ -29,7 +29,7 @@ private:
|
|||
NS_DECL_ISUPPORTS
|
||||
NS_DECL_NSISIMPLEENUMERATOR
|
||||
|
||||
AppendingEnumerator(nsISimpleEnumerator* aBase);
|
||||
explicit AppendingEnumerator(nsISimpleEnumerator* aBase);
|
||||
|
||||
private:
|
||||
~AppendingEnumerator() {}
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ class nsCopySource
|
|||
{
|
||||
public:
|
||||
nsCopySource();
|
||||
nsCopySource(nsIMsgFolder* srcFolder);
|
||||
explicit nsCopySource(nsIMsgFolder* srcFolder);
|
||||
~nsCopySource();
|
||||
void AddMessage(nsIMsgDBHdr* aMsg);
|
||||
|
||||
|
|
|
|||
|
|
@ -500,7 +500,7 @@ private:
|
|||
NS_DECL_NSISIMPLEENUMERATOR
|
||||
|
||||
// nsMsgThreadEnumerator methods:
|
||||
nsMsgViewHdrEnumerator(nsMsgDBView *view);
|
||||
explicit nsMsgViewHdrEnumerator(nsMsgDBView *view);
|
||||
|
||||
RefPtr<nsMsgDBView> m_view;
|
||||
nsMsgViewIndex m_curHdrIndex;
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ public:
|
|||
friend class nsMsgGroupView;
|
||||
|
||||
nsMsgGroupThread();
|
||||
nsMsgGroupThread(nsIMsgDatabase *db);
|
||||
explicit nsMsgGroupThread(nsIMsgDatabase *db);
|
||||
|
||||
NS_DECL_NSIMSGTHREAD
|
||||
NS_DECL_ISUPPORTS
|
||||
|
|
|
|||
|
|
@ -653,7 +653,7 @@ nsMsgPrintEngine::PrintMsgWindow()
|
|||
class nsPrintMsgWindowEvent : public mozilla::Runnable
|
||||
{
|
||||
public:
|
||||
nsPrintMsgWindowEvent(nsMsgPrintEngine *mpe)
|
||||
explicit nsPrintMsgWindowEvent(nsMsgPrintEngine *mpe)
|
||||
: mMsgPrintEngine(mpe)
|
||||
{}
|
||||
|
||||
|
|
@ -672,7 +672,7 @@ private:
|
|||
class nsStartNextPrintOpEvent : public mozilla::Runnable
|
||||
{
|
||||
public:
|
||||
nsStartNextPrintOpEvent(nsMsgPrintEngine *mpe)
|
||||
explicit nsStartNextPrintOpEvent(nsMsgPrintEngine *mpe)
|
||||
: mMsgPrintEngine(mpe)
|
||||
{}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue