summaryrefslogtreecommitdiff
path: root/sc/source/ui/view/cellsh1.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/view/cellsh1.cxx')
-rw-r--r--sc/source/ui/view/cellsh1.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/sc/source/ui/view/cellsh1.cxx b/sc/source/ui/view/cellsh1.cxx
index 1ffb68bcb209..c576d27c8cad 100644
--- a/sc/source/ui/view/cellsh1.cxx
+++ b/sc/source/ui/view/cellsh1.cxx
@@ -2844,7 +2844,7 @@ void ScCellShell::ExecuteDataPilotDialog()
}
else // create new table
{
- sal_uLong nSrcErrorId = 0;
+ const char* pSrcErrorId = nullptr;
// select database range or data
pTabViewShell->GetDBData( true, SC_DB_OLD );
@@ -2921,8 +2921,8 @@ void ScCellShell::ExecuteDataPilotDialog()
OUString aName = pTypeDlg->GetSelectedNamedRange();
ScSheetSourceDesc aShtDesc(pDoc);
aShtDesc.SetRangeName(aName);
- nSrcErrorId = aShtDesc.CheckSourceRange();
- if (!nSrcErrorId)
+ pSrcErrorId = aShtDesc.CheckSourceRange();
+ if (!pSrcErrorId)
{
pNewDPObject.reset(new ScDPObject(pDoc));
pNewDPObject->SetSheetDesc(aShtDesc);
@@ -2963,8 +2963,8 @@ void ScCellShell::ExecuteDataPilotDialog()
{
ScSheetSourceDesc aShtDesc(pDoc);
aShtDesc.SetSourceRange(aRange);
- nSrcErrorId = aShtDesc.CheckSourceRange();
- if (!nSrcErrorId)
+ pSrcErrorId = aShtDesc.CheckSourceRange();
+ if (!pSrcErrorId)
{
pNewDPObject.reset(new ScDPObject(pDoc));
pNewDPObject->SetSheetDesc( aShtDesc );
@@ -2980,10 +2980,10 @@ void ScCellShell::ExecuteDataPilotDialog()
}
}
- if (nSrcErrorId)
+ if (pSrcErrorId)
{
// Error occurred during data creation. Launch an error and bail out.
- ScopedVclPtrInstance< InfoBox > aBox(pTabViewShell->GetDialogParent(), ScGlobal::GetRscString(nSrcErrorId));
+ ScopedVclPtrInstance< InfoBox > aBox(pTabViewShell->GetDialogParent(), ScGlobal::GetRscString(pSrcErrorId));
aBox->Execute();
return;
}