summaryrefslogtreecommitdiff
path: root/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'chart2/source/controller/chartapiwrapper/AxisWrapper.cxx')
-rw-r--r--chart2/source/controller/chartapiwrapper/AxisWrapper.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx b/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx
index 2cc97cebc91d..a064752aae72 100644
--- a/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx
+++ b/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx
@@ -440,7 +440,7 @@ Reference< beans::XPropertySet > SAL_CALL AxisWrapper::getAxisTitle() throw (uno
eTitleType = TitleHelper::SECONDARY_Y_AXIS_TITLE;
break;
default:
- return 0;
+ return nullptr;
}
m_xAxisTitle = new TitleWrapper( eTitleType, m_spChart2ModelContact );
}
@@ -463,7 +463,7 @@ Reference< beans::XPropertySet > SAL_CALL AxisWrapper::getMajorGrid() throw (uno
eGridType = GridWrapper::Z_MAJOR_GRID;
break;
default:
- return 0;
+ return nullptr;
}
m_xMajorGrid = new GridWrapper( eGridType, m_spChart2ModelContact );
}
@@ -486,7 +486,7 @@ Reference< beans::XPropertySet > SAL_CALL AxisWrapper::getMinorGrid() throw (uno
eGridType = GridWrapper::Z_MINOR_GRID;
break;
default:
- return 0;
+ return nullptr;
}
m_xMinorGrid = new GridWrapper( eGridType, m_spChart2ModelContact );
}