summaryrefslogtreecommitdiff
path: root/chart2/source/view/main/DummyXShape.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'chart2/source/view/main/DummyXShape.cxx')
-rw-r--r--chart2/source/view/main/DummyXShape.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/chart2/source/view/main/DummyXShape.cxx b/chart2/source/view/main/DummyXShape.cxx
index b066f39a2d2d..322a21ec000e 100644
--- a/chart2/source/view/main/DummyXShape.cxx
+++ b/chart2/source/view/main/DummyXShape.cxx
@@ -27,7 +27,7 @@
#include <cppuhelper/supportsservice.hxx>
#include <cppuhelper/implbase.hxx>
#include <editeng/unoprnms.hxx>
-#include <toolkit/helper/vclunohelper.hxx>
+#include <vcl/unohelp.hxx>
#include <basegfx/point/b2dpoint.hxx>
#include <basegfx/matrix/b3dhommatrix.hxx>
@@ -741,13 +741,13 @@ struct FontAttribSetter
else if(rPropName == "CharWeight")
{
float fWeight = rProp.second.get<float>();
- FontWeight eFontWeight = VCLUnoHelper::ConvertFontWeight(fWeight);
+ FontWeight eFontWeight = vcl::unohelper::ConvertFontWeight(fWeight);
mrFont.SetWeight(eFontWeight);
}
else if(rPropName == "ChartWidth")
{
float fWidth = rProp.second.get<float>();
- FontWidth eFontWidth = VCLUnoHelper::ConvertFontWidth(fWidth);
+ FontWidth eFontWidth = vcl::unohelper::ConvertFontWidth(fWidth);
mrFont.SetAverageFontWidth(eFontWidth);
}
}