diff options
author | Moonchild <mcwerewolf@wolfbeast.com> | 2019-03-14 15:23:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-14 15:23:17 +0100 |
commit | 7650a03115a466a89974e240894f1d5e0063fdef (patch) | |
tree | ad7d4f07c829208649d77a06b348e874ca80340b /image/imgFrame.cpp | |
parent | 91cbd86a5e0e851904015fc98f3b4bb4422e584b (diff) | |
parent | cf36d986290114b6dd1fcdac6c08283178629742 (diff) | |
download | UXP-7650a03115a466a89974e240894f1d5e0063fdef.tar UXP-7650a03115a466a89974e240894f1d5e0063fdef.tar.gz UXP-7650a03115a466a89974e240894f1d5e0063fdef.tar.lz UXP-7650a03115a466a89974e240894f1d5e0063fdef.tar.xz UXP-7650a03115a466a89974e240894f1d5e0063fdef.zip |
Merge pull request #1005 from adeshkp/compiler-warnings
Fix some compiler warnings
Diffstat (limited to 'image/imgFrame.cpp')
-rw-r--r-- | image/imgFrame.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/image/imgFrame.cpp b/image/imgFrame.cpp index c9f44181d..d982c17c4 100644 --- a/image/imgFrame.cpp +++ b/image/imgFrame.cpp @@ -161,13 +161,13 @@ imgFrame::imgFrame() : mMonitor("imgFrame") , mDecoded(0, 0, 0, 0) , mLockCount(0) + , mHasNoAlpha(false) , mAborted(false) , mFinished(false) , mOptimizable(false) , mTimeout(FrameTimeout::FromRawMilliseconds(100)) , mDisposalMethod(DisposalMethod::NOT_SPECIFIED) , mBlendMethod(BlendMethod::OVER) - , mHasNoAlpha(false) , mPalettedImageData(nullptr) , mPaletteDepth(0) , mNonPremult(false) |