summaryrefslogtreecommitdiffstats
path: root/sc/source/filter/oox/workbookhelper.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-10 10:22:39 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-10 10:31:36 +0100
commitde29ac09535d814e4be7e1bf0f10beb9f0f847e3 (patch)
tree139f75d657cb825622e812254b8b7df4e509140b /sc/source/filter/oox/workbookhelper.cxx
parentloplugin:nullptr (automatic rewrite) (diff)
downloadcore-de29ac09535d814e4be7e1bf0f10beb9f0f847e3.tar.gz
core-de29ac09535d814e4be7e1bf0f10beb9f0f847e3.zip
loplugin:nullptr (automatic rewrite)
Change-Id: I765d2a600f9c57da50c85354688e3ae796750d94
Diffstat (limited to 'sc/source/filter/oox/workbookhelper.cxx')
-rw-r--r--sc/source/filter/oox/workbookhelper.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/filter/oox/workbookhelper.cxx b/sc/source/filter/oox/workbookhelper.cxx
index 4ccbd136c40e..27bee11b41c2 100644
--- a/sc/source/filter/oox/workbookhelper.cxx
+++ b/sc/source/filter/oox/workbookhelper.cxx
@@ -317,8 +317,8 @@ WorkbookGlobals::WorkbookGlobals( ExcelFilter& rFilter ) :
meFilterType( FILTER_OOXML ),
mpOoxFilter( &rFilter ),
meBiff( BIFF_UNKNOWN ),
- mpDoc(NULL),
- mpDocShell(NULL)
+ mpDoc(nullptr),
+ mpDocShell(nullptr)
{
// register at the filter, needed for virtual callbacks (even during construction)
mrExcelFilter.registerWorkbookGlobals( *this );
@@ -406,7 +406,7 @@ ScRangeData* WorkbookGlobals::createNamedRangeObject(
OUString& orName, const Sequence< FormulaToken>& rTokens, sal_Int32 nIndex, sal_Int32 nNameFlags )
{
// create the name and insert it into the Calc document
- ScRangeData* pScRangeData = NULL;
+ ScRangeData* pScRangeData = nullptr;
if( !orName.isEmpty() )
{
ScDocument& rDoc = getScDocument();
@@ -423,7 +423,7 @@ ScRangeData* WorkbookGlobals::createLocalNamedRangeObject(
OUString& orName, const Sequence< FormulaToken >& rTokens, sal_Int32 nIndex, sal_Int32 nNameFlags, sal_Int32 nTab )
{
// create the name and insert it into the Calc document
- ScRangeData* pScRangeData = NULL;
+ ScRangeData* pScRangeData = nullptr;
if( !orName.isEmpty() )
{
ScDocument& rDoc = getScDocument();