diff options
author | Zolnai Tamás <zolnaitamas2000@gmail.com> | 2015-03-08 14:02:51 +0100 |
---|---|---|
committer | Zolnai Tamás <zolnaitamas2000@gmail.com> | 2015-03-11 07:05:00 +0100 |
commit | 8e8a97feebd357687927f62b12c89f18c65382a0 (patch) | |
tree | 7fc7352ca92e5ec47b19e23b7e8cb00b2aa9b1f5 /editeng | |
parent | b5aa8604ec39f7f8d573fe2dde94b7c7e70d93b8 (diff) |
const_cast -> mutable
Change-Id: Idedcb4a9add451fbdf39cad1429669a12b8c11b9
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/items/frmitems.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editeng/source/items/frmitems.cxx b/editeng/source/items/frmitems.cxx index 0621746e2f78..fae0be78ac8a 100644 --- a/editeng/source/items/frmitems.cxx +++ b/editeng/source/items/frmitems.cxx @@ -3939,7 +3939,7 @@ const GraphicObject* SvxBrushItem::GetGraphicObject(OUString const & referer) co if( nRes != GRFILTER_OK ) { - const_cast < SvxBrushItem*> (this)->bLoadAgain = false; + bLoadAgain = false; } else { @@ -3950,7 +3950,7 @@ const GraphicObject* SvxBrushItem::GetGraphicObject(OUString const & referer) co } else { - const_cast < SvxBrushItem*> (this)->bLoadAgain = false; + bLoadAgain = false; } } |