diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-09-18 15:00:10 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-09-19 17:20:42 +0200 |
commit | 94da3afddd21ee1ca437132466995eb59a6bc05b (patch) | |
tree | 372b62ed97be13444c1206f6e3b4e34f1a23f7fe /cui/source/dialogs/cuigrfflt.cxx | |
parent | efd0a2dd23fbc069ac829167f7d9ed2e1ce88cfc (diff) |
rename RectCtl back to SvxRectCtl
Change-Id: I4adde35b198d45fed09d837de5c1370d2a879f4b
Reviewed-on: https://gerrit.libreoffice.org/60715
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'cui/source/dialogs/cuigrfflt.cxx')
-rw-r--r-- | cui/source/dialogs/cuigrfflt.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cui/source/dialogs/cuigrfflt.cxx b/cui/source/dialogs/cuigrfflt.cxx index 4850bd6927ca..9bc7dcf55cbf 100644 --- a/cui/source/dialogs/cuigrfflt.cxx +++ b/cui/source/dialogs/cuigrfflt.cxx @@ -396,12 +396,11 @@ Graphic GraphicFilterPoster::GetFilteredGraphic( const Graphic& rGraphic, double return aRet; } - void EmbossControl::MouseButtonDown( const MouseEvent& rEvt ) { const RectPoint eOldRP = GetActualRP(); - RectCtl::MouseButtonDown( rEvt ); + SvxRectCtl::MouseButtonDown( rEvt ); if( GetActualRP() != eOldRP ) maModifyHdl.Call( nullptr ); @@ -409,7 +408,7 @@ void EmbossControl::MouseButtonDown( const MouseEvent& rEvt ) void EmbossControl::SetDrawingArea(weld::DrawingArea* pDrawingArea) { - RectCtl::SetDrawingArea(pDrawingArea); + SvxRectCtl::SetDrawingArea(pDrawingArea); Size aSize(pDrawingArea->get_ref_device().LogicToPixel(Size(77, 60), MapMode(MapUnit::MapAppFont))); pDrawingArea->set_size_request(aSize.Width(), aSize.Height()); } |