diff options
author | adeshkp <adeshkp@users.noreply.github.com> | 2019-03-14 09:52:03 -0400 |
---|---|---|
committer | adeshkp <adeshkp@users.noreply.github.com> | 2019-03-14 09:52:03 -0400 |
commit | 52be954e59b3ef06b7e8bfa28630e1005351d183 (patch) | |
tree | 493f52a689c0a422aeba83cb1cd44baf1c63ac58 /image | |
parent | 6e457e653e5c4b2a92a2a7adc1ea6bcdc2d39a5f (diff) | |
download | uxp-52be954e59b3ef06b7e8bfa28630e1005351d183.tar.gz |
Fix order of member variables in a couple of initializer lists
Diffstat (limited to 'image')
-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 c9f44181d6..d982c17c4b 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) |