diff options
author | Noel Grandin <noel@peralex.com> | 2015-03-26 15:39:26 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-03-27 08:33:44 +0200 |
commit | 9bccd26037188f20fec244bede3022900d1b96fa (patch) | |
tree | 4751478fa7608813568c5a3c5777d0b87117110c /svx/source | |
parent | a1d10eb8d7ee73d901041fdf550d2196a63c9d1d (diff) |
convert CUTFLAG_ constants to enum class
Change-Id: I98dc5488954a4d46f7e0158790a4c3dabebfc1b3
Diffstat (limited to 'svx/source')
-rw-r--r-- | svx/source/dialog/framelink.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/dialog/framelink.cxx b/svx/source/dialog/framelink.cxx index aa5b5104e2a2..851028690638 100644 --- a/svx/source/dialog/framelink.cxx +++ b/svx/source/dialog/framelink.cxx @@ -1395,7 +1395,7 @@ double lcl_GetExtent( const Style& rBorder, const Style& rSide, const Style& rOp double nCut = 0.0; basegfx::tools::findCut( aBasePoint, aBaseVector, aOtherPoint, aOtherVector, - CUTFLAG_ALL, &nCut ); + CutFlagValue::ALL, &nCut ); return nCut; } |