Bug 1065667 - Fix more bad implicit ctors in layout; r=roc

This commit is contained in:
Ehsan Akhgari 2014-09-11 15:41:21 -04:00
Родитель 00c948a90a
Коммит 40201d7706
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -215,7 +215,7 @@ public:
friend struct AutoApplyUserSelectStyle;
struct MOZ_STACK_CLASS AutoApplyUserSelectStyle
{
AutoApplyUserSelectStyle(Selection* aSelection
explicit AutoApplyUserSelectStyle(Selection* aSelection
MOZ_GUARD_OBJECT_NOTIFIER_PARAM)
: mSavedValue(aSelection->mApplyUserSelectStyle)
{

Просмотреть файл

@ -148,7 +148,7 @@ protected:
struct nsSVGFrameReferenceFromProperty
{
nsSVGFrameReferenceFromProperty(nsIFrame* aFrame)
explicit nsSVGFrameReferenceFromProperty(nsIFrame* aFrame)
: mFrame(aFrame)
, mFramePresShell(aFrame->PresContext()->PresShell())
{}