diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-11-25 15:59:20 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-11-25 16:46:07 +0000 |
commit | 213c0267c8c239eae9c2b00bdf737aaf678360e5 (patch) | |
tree | 0142cec8e1b23c026f1fec1b38f21af373da8c17 /vcl | |
parent | 40e597bcab4d2e9ffaac429d7ffb0a80fd75bb26 (diff) |
downgrade these warnings to info
quartz doesn't impl them either, so presumably its not too bad to
not have them. Can't see anything visually ugly at the moment
to warrant the effort.
Change-Id: Ibf6119f549ab6712d3f1aca18e2cdab905f00030
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/headless/svpgdi.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/headless/svpgdi.cxx b/vcl/headless/svpgdi.cxx index 84b4b3228f69..7864effa1cd0 100644 --- a/vcl/headless/svpgdi.cxx +++ b/vcl/headless/svpgdi.cxx @@ -964,7 +964,7 @@ bool SvpSalGraphics::drawPolyLineBezier( sal_uInt32, const SalPoint*, const sal_uInt8* ) { - SAL_WARN("vcl.gdi", "unsupported SvpSalGraphics::drawPolyLineBezier case"); + SAL_INFO("vcl.gdi", "unsupported SvpSalGraphics::drawPolyLineBezier case"); return false; } @@ -972,7 +972,7 @@ bool SvpSalGraphics::drawPolygonBezier( sal_uInt32, const SalPoint*, const sal_uInt8* ) { - SAL_WARN("vcl.gdi", "unsupported SvpSalGraphics::drawPolygonBezier case"); + SAL_INFO("vcl.gdi", "unsupported SvpSalGraphics::drawPolygonBezier case"); return false; } @@ -981,7 +981,7 @@ bool SvpSalGraphics::drawPolyPolygonBezier( sal_uInt32, const SalPoint* const*, const sal_uInt8* const* ) { - SAL_WARN("vcl.gdi", "unsupported SvpSalGraphics::drawPolyPolygonBezier case"); + SAL_INFO("vcl.gdi", "unsupported SvpSalGraphics::drawPolyPolygonBezier case"); return false; } |