summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-04-10 00:04:35 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-04-10 00:11:23 +0200
commitb7c7bd3de0fdadaf5e4769e0759d68ad17fb7bd0 (patch)
treee28cfe1c0df071aa7e7034d02c331cbd8b858047
parentceec6e1ac98999fff92d2feb6274fe0de9b8f005 (diff)
add teh rounded corners property back
This has been removed because it was unused. Change-Id: If8fdf87cec1cd5fb5ee1924396643b152e6f3431
-rw-r--r--chart2/source/view/inc/3DChartObjects.hxx3
-rw-r--r--chart2/source/view/main/3DChartObjects.cxx5
2 files changed, 8 insertions, 0 deletions
diff --git a/chart2/source/view/inc/3DChartObjects.hxx b/chart2/source/view/inc/3DChartObjects.hxx
index 9ce44a47fffc..edcd27305b14 100644
--- a/chart2/source/view/inc/3DChartObjects.hxx
+++ b/chart2/source/view/inc/3DChartObjects.hxx
@@ -35,7 +35,10 @@ class Bar : public Renderable3DObject
{
public:
Bar( const glm::mat4& rPosition, sal_uInt32 nId );
+
+ virtual void render() SAL_OVERRIDE;
private:
+ bool mbRoundedCorners;
glm::mat4 maPos;
Color maColor; // RGBA fill color
};
diff --git a/chart2/source/view/main/3DChartObjects.cxx b/chart2/source/view/main/3DChartObjects.cxx
index 3c11bc6a8179..22eadae4dd4d 100644
--- a/chart2/source/view/main/3DChartObjects.cxx
+++ b/chart2/source/view/main/3DChartObjects.cxx
@@ -29,6 +29,11 @@ Bar::Bar(const glm::mat4& rPosition, sal_uInt32 nId):
{
}
+void Bar::render()
+{
+ (void) mbRoundedCorners;
+}
+
Line::Line(sal_uInt32 nId):
Renderable3DObject(nId)
{