summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2015-10-10 16:54:43 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2015-10-10 16:54:43 +0200
commit82cf6c67373290c65523431e845d00c67f08be42 (patch)
tree1eac7b7f4f3d8921b7767a486a67298962cb22dc
parent3ddad211de9c6a87ccf328ae6bcbd1f6b9e65e6b (diff)
also update line panel for axis, related tdf#94933
Change-Id: Ie280fa01dbe25287d01b7f36d152ee55ce5dbe07
-rw-r--r--chart2/source/controller/sidebar/ChartLinePanel.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/chart2/source/controller/sidebar/ChartLinePanel.cxx b/chart2/source/controller/sidebar/ChartLinePanel.cxx
index 0cae0403a516..1bb4bfcccfa7 100644
--- a/chart2/source/controller/sidebar/ChartLinePanel.cxx
+++ b/chart2/source/controller/sidebar/ChartLinePanel.cxx
@@ -136,7 +136,10 @@ ChartLinePanel::ChartLinePanel(vcl::Window* pParent,
mbModelValid(true),
maLineColorWrapper(mxModel, getColorToolBoxControl(mpTBColor.get()), "LineColor")
{
- std::vector<ObjectType> aAcceptedTypes { OBJECTTYPE_PAGE, OBJECTTYPE_DIAGRAM, OBJECTTYPE_DATA_SERIES, OBJECTTYPE_TITLE, OBJECTTYPE_LEGEND, OBJECTTYPE_DATA_CURVE, OBJECTTYPE_DATA_AVERAGE_LINE};
+ std::vector<ObjectType> aAcceptedTypes { OBJECTTYPE_PAGE, OBJECTTYPE_DIAGRAM,
+ OBJECTTYPE_DATA_SERIES, OBJECTTYPE_TITLE, OBJECTTYPE_LEGEND, OBJECTTYPE_DATA_CURVE,
+ OBJECTTYPE_DATA_AVERAGE_LINE,
+ OBJECTTYPE_AXIS};
mxSelectionListener->setAcceptedTypes(aAcceptedTypes);
Initialize();
}