summaryrefslogtreecommitdiff
path: root/image
diff options
context:
space:
mode:
authoradeshkp <adeshkp@users.noreply.github.com>2019-03-14 09:52:03 -0400
committeradeshkp <adeshkp@users.noreply.github.com>2019-03-14 09:52:03 -0400
commitd3fdcff65e3c441cd2186b7505b243f5a8f7858c (patch)
tree493f52a689c0a422aeba83cb1cd44baf1c63ac58 /image
parent822d934efff52c1b7f7ba544d31e09ccfdbc093d (diff)
downloaduxp-d3fdcff65e3c441cd2186b7505b243f5a8f7858c.tar.gz
Fix order of member variables in a couple of initializer lists
Diffstat (limited to 'image')
-rw-r--r--image/imgFrame.cpp2
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)