diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-03-30 16:27:50 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-03-31 07:00:10 +0000 |
commit | 8cd5002959c27e2e271d3897886a2ef504e41ff6 (patch) | |
tree | d470f9891f158bbe7b16792028572fa4720abed5 /chart2/qa | |
parent | 9a165a86795c65c42a94bf6f7f48545c797f2db3 (diff) |
use actual UNO enums in chart2
Change-Id: I05d4eed55f5deba4b1802389d1ba94582d30550f
Reviewed-on: https://gerrit.libreoffice.org/35917
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'chart2/qa')
-rw-r--r-- | chart2/qa/extras/chart2export.cxx | 15 | ||||
-rw-r--r-- | chart2/qa/extras/chart2import.cxx | 20 |
2 files changed, 35 insertions, 0 deletions
diff --git a/chart2/qa/extras/chart2export.cxx b/chart2/qa/extras/chart2export.cxx index 5975c7a3cfa2..eae08be7cf96 100644 --- a/chart2/qa/extras/chart2export.cxx +++ b/chart2/qa/extras/chart2export.cxx @@ -177,6 +177,21 @@ protected: }; +namespace com { namespace sun { namespace star { namespace drawing { + +std::ostream& operator<<(std::ostream& rStrm, FillStyle n) +{ + rStrm << (int) n; + return rStrm; +} +std::ostream& operator<<(std::ostream& rStrm, LineStyle n) +{ + rStrm << (int) n; + return rStrm; +} + +} } } } + namespace { struct CheckForChartName diff --git a/chart2/qa/extras/chart2import.cxx b/chart2/qa/extras/chart2import.cxx index 871b41bc5376..ec82f813de56 100644 --- a/chart2/qa/extras/chart2import.cxx +++ b/chart2/qa/extras/chart2import.cxx @@ -154,6 +154,26 @@ private: }; +namespace com { namespace sun { namespace star { namespace drawing { + +std::ostream& operator<<(std::ostream& rStrm, FillStyle n) +{ + rStrm << (int) n; + return rStrm; +} + +} } } } + +namespace com { namespace sun { namespace star { namespace chart2 { + +std::ostream& operator<<(std::ostream& rStrm, CurveStyle n) +{ + rStrm << (int) n; + return rStrm; +} + +} } } } + // error bar import // split method up into smaller chunks for more detailed tests void Chart2ImportTest::Fdo60083() |