fix reorder initialization warning

http://codereview.appspot.com/5699084/

git-svn-id: http://skia.googlecode.com/svn/trunk@3264 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
djsollen@google.com 2012-02-27 16:22:48 +00:00
parent 92d2a299d2
commit 710c269dc1

View File

@ -94,8 +94,8 @@ private:
class PosTextPlaybackBench : public PicturePlaybackBench {
public:
PosTextPlaybackBench(void* param, bool drawPosH)
: fDrawPosH(drawPosH)
, INHERITED(param, drawPosH ? "drawPosTextH" : "drawPosText") { }
: INHERITED(param, drawPosH ? "drawPosTextH" : "drawPosText")
, fDrawPosH(drawPosH) { }
protected:
virtual void recordCanvas(SkCanvas* canvas) {
SkPaint paint;