diff options
author | Pavel Janík <paveljanik@apache.org> | 2012-10-19 10:11:32 +0000 |
---|---|---|
committer | Pavel Janík <paveljanik@apache.org> | 2012-10-19 10:11:32 +0000 |
commit | 149e995910a45e66aa5cb2ff8af1da822667c7e4 (patch) | |
tree | 72b4f28b4a1c17fa6e29f0a6f65fd251de01bc6e /drawinglayer/source | |
parent | 1f9d7c1b0248fb0c8d8fc2c3da21d881bffb579d (diff) |
Reorder initializations to match the prototype (this prevents WaE issues/compiler warnings).
Notes
Notes:
prefer: 37aa7d81aacaae12dfe0fd2ade2779235bbf72f1
Diffstat (limited to 'drawinglayer/source')
-rwxr-xr-x | drawinglayer/source/attribute/fillgraphicattribute.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drawinglayer/source/attribute/fillgraphicattribute.cxx b/drawinglayer/source/attribute/fillgraphicattribute.cxx index 366947652517..cb50665660be 100755 --- a/drawinglayer/source/attribute/fillgraphicattribute.cxx +++ b/drawinglayer/source/attribute/fillgraphicattribute.cxx @@ -60,9 +60,9 @@ namespace drawinglayer : mnRefCount(0), maGraphic(rGraphic), maGraphicRange(rGraphicRange), - mbTiling(bTiling), mfOffsetX(fOffsetX), - mfOffsetY(fOffsetY) + mfOffsetY(fOffsetY), + mbTiling(bTiling) { } |