diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-30 14:59:47 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-10-31 12:56:21 +0000 |
commit | 4530451d40470bf5359645de0c142ddf9dc329b6 (patch) | |
tree | 8b57614e9316685a8178d9d61795932c3e705d45 /svx/source/engine3d | |
parent | bd332c2a335b34e209fe2b7fdfb669c855325636 (diff) |
com::sun::star->css in svx
Change-Id: If2c11fa548c5ebef2297d2491edd837b54e3707c
Reviewed-on: https://gerrit.libreoffice.org/19690
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'svx/source/engine3d')
-rw-r--r-- | svx/source/engine3d/extrud3d.cxx | 2 | ||||
-rw-r--r-- | svx/source/engine3d/lathe3d.cxx | 2 | ||||
-rw-r--r-- | svx/source/engine3d/view3d1.cxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/engine3d/extrud3d.cxx b/svx/source/engine3d/extrud3d.cxx index 156a09dcd9f2..cd4ed8da86f6 100644 --- a/svx/source/engine3d/extrud3d.cxx +++ b/svx/source/engine3d/extrud3d.cxx @@ -201,7 +201,7 @@ SdrAttrObj* E3dExtrudeObj::GetBreakObj() SdrPathObj* pPathObj = new SdrPathObj(OBJ_PLIN, aPoly); SfxItemSet aSet(GetObjectItemSet()); - aSet.Put(XLineStyleItem(com::sun::star::drawing::LineStyle_SOLID)); + aSet.Put(XLineStyleItem(css::drawing::LineStyle_SOLID)); pPathObj->SetMergedItemSet(aSet); return pPathObj; diff --git a/svx/source/engine3d/lathe3d.cxx b/svx/source/engine3d/lathe3d.cxx index 9d2c60c57260..884b5f5f8d2d 100644 --- a/svx/source/engine3d/lathe3d.cxx +++ b/svx/source/engine3d/lathe3d.cxx @@ -186,7 +186,7 @@ SdrAttrObj* E3dLatheObj::GetBreakObj() SfxItemSet aSet(GetObjectItemSet()); // Enable lines to guarantee that the object becomes visible - aSet.Put(XLineStyleItem(com::sun::star::drawing::LineStyle_SOLID)); + aSet.Put(XLineStyleItem(css::drawing::LineStyle_SOLID)); pPathObj->SetMergedItemSet(aSet); diff --git a/svx/source/engine3d/view3d1.cxx b/svx/source/engine3d/view3d1.cxx index 6cd62af4d7a0..adac47020fe4 100644 --- a/svx/source/engine3d/view3d1.cxx +++ b/svx/source/engine3d/view3d1.cxx @@ -140,7 +140,7 @@ SfxItemSet E3dView::Get3DAttributes(E3dScene* pInScene, bool /*bOnly3DAttr*/) co aSet.Put(aDefaultSet); // ... but no lines for 3D - aSet.Put(XLineStyleItem (com::sun::star::drawing::LineStyle_NONE)); + aSet.Put(XLineStyleItem (css::drawing::LineStyle_NONE)); // new defaults for distance and focal length aSet.Put(makeSvx3DDistanceItem(100)); |