summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-03-26 15:39:26 +0200
committerNoel Grandin <noel@peralex.com>2015-03-27 08:33:44 +0200
commit9bccd26037188f20fec244bede3022900d1b96fa (patch)
tree4751478fa7608813568c5a3c5777d0b87117110c /svx
parenta1d10eb8d7ee73d901041fdf550d2196a63c9d1d (diff)
convert CUTFLAG_ constants to enum class
Change-Id: I98dc5488954a4d46f7e0158790a4c3dabebfc1b3
Diffstat (limited to 'svx')
-rw-r--r--svx/source/dialog/framelink.cxx2
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;
}