diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-07-20 21:07:04 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-07-20 21:07:04 +0200 |
commit | 2d226f4c0b3f95bfdfe7bdcd3fd0ab87a806f4c3 (patch) | |
tree | b7b6ca95bb93b2d020754716c00fc3d76a2f3525 | |
parent | 8d3fc64066b157d2e24df57635000f121915793a (diff) |
SchLayoutTabPage: that ctor wants a pointer
Change-Id: I7f500186c2ce485e7f6a857286c14d0a64354c31
-rw-r--r-- | chart2/source/controller/dialogs/tp_PointGeometry.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chart2/source/controller/dialogs/tp_PointGeometry.cxx b/chart2/source/controller/dialogs/tp_PointGeometry.cxx index 55046ccfc908..0e37cf56bf03 100644 --- a/chart2/source/controller/dialogs/tp_PointGeometry.cxx +++ b/chart2/source/controller/dialogs/tp_PointGeometry.cxx @@ -31,8 +31,8 @@ namespace chart { SchLayoutTabPage::SchLayoutTabPage(Window* pWindow,const SfxItemSet& rInAttrs) - : SfxTabPage(pWindow, "tp_ChartType", "modules/schart/ui/tp_ChartType.ui", rInAttrs) - , m_pGeometryResources(0) + : SfxTabPage(pWindow, "tp_ChartType", "modules/schart/ui/tp_ChartType.ui", &rInAttrs) + , m_pGeometryResources(0) { m_pGeometryResources = new BarGeometryResources( this ); } |