summaryrefslogtreecommitdiff
path: root/sc/source/ui/dbgui/pvfundlg.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/dbgui/pvfundlg.cxx')
-rw-r--r--sc/source/ui/dbgui/pvfundlg.cxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/sc/source/ui/dbgui/pvfundlg.cxx b/sc/source/ui/dbgui/pvfundlg.cxx
index 5ee9b320a04e..1bf258264dc9 100644
--- a/sc/source/ui/dbgui/pvfundlg.cxx
+++ b/sc/source/ui/dbgui/pvfundlg.cxx
@@ -748,8 +748,11 @@ ScDPShowDetailDlg::ScDPShowDetailDlg( Window* pParent, ScDPObject& rDPObj, sal_u
if (pLayoutName)
aName = *pLayoutName;
}
- maLbDims.InsertEntry( aName );
- maNameIndexMap.insert(DimNameIndexMap::value_type(aName, nDim));
+ if ( aName.Len() )
+ {
+ maLbDims.InsertEntry( aName );
+ maNameIndexMap.insert(DimNameIndexMap::value_type(aName, nDim));
+ }
}
}
}
ce?h=aoo/aw080&id=9aeac1b2dd39f538f897602bd1ae6d37efa6cde4'>Use move semanticsStephan Bergmann 2015-09-12Update many ListBox users to its sal_Int32 interfaceMatteo Casalin 2015-09-11convert Link<> to typedNoel Grandin 2015-09-10no need to warn anymore as we can save VBA nowMarkus Mohrhard 2015-09-09convert Link<> to typedNoel Grandin 2015-09-09convert Link<> to typedNoel Grandin 2015-09-09convert Link<> to typedNoel Grandin 2015-09-08convert Link<> to typedNoel Grandin 2015-09-08convert Link<> to typedNoel Grandin 2015-09-04convert Link<> to typedNoel Grandin 2015-09-04convert Link<> to typedNoel Grandin 2015-09-03convert Link<> to typedNoel Grandin 2015-09-03convert Link<> to typedNoel Grandin 2015-09-02SetXXX(bool) with a default value of false are just wrongNoel Grandin 2015-08-31convert Link<> to typedNoel Grandin 2015-08-29o3tl/cow_wrapper: remove boost dependencyDaniel Robertson 2015-08-28make PostUserEvent Link<> typedNoel Grandin 2015-08-26Clean up aEmptyStrStephan Bergmann 2015-08-26Convert vcl Button Link<> click handler to typed Link<Button*,void>Noel Grandin 2015-08-25simplify, IsEmpty() checks both Right and Bottom alreadyNoel Grandin 2015-08-22tdf#93077 - basic dialog localization issues.Michael Meeks