summaryrefslogtreecommitdiff
path: root/oox/source/xls
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2008-07-01 11:22:55 +0000
committerVladimir Glazounov <vg@openoffice.org>2008-07-01 11:22:55 +0000
commit562a1b017aa8e0bbe71f973970c76e5d8a9ff816 (patch)
treed57d572872988a21b390f8b4fcfdfc2c17ed398f /oox/source/xls
parentec91645371ccb909d4b73e0c44769c0899678d9c (diff)
INTEGRATION: CWS xmlfilter05 (1.3.4); FILE MERGED
2008/05/02 11:20:19 hbrinkm 1.3.4.4: RESYNC: (1.3-1.4); FILE MERGED 2008/04/16 13:10:11 dr 1.3.4.3: new optional token handling, fix default rotation in 3d charts 2008/04/02 12:42:02 hbrinkm 1.3.4.2: merged changes from xmlfilter04 to xmlfilter05 2008/04/01 15:38:36 hbrinkm 1.3.4.1: 'Merged xmlfilter04'
Diffstat (limited to 'oox/source/xls')
-rw-r--r--oox/source/xls/defnamesbuffer.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/xls/defnamesbuffer.cxx b/oox/source/xls/defnamesbuffer.cxx
index 81df3e92d86b..0128b7d9192a 100644
--- a/oox/source/xls/defnamesbuffer.cxx
+++ b/oox/source/xls/defnamesbuffer.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: defnamesbuffer.cxx,v $
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
* This file is part of OpenOffice.org.
*
@@ -305,7 +305,7 @@ DefinedName::DefinedName( const WorkbookHelper& rHelper, sal_Int32 nLocalSheet )
void DefinedName::importDefinedName( const AttributeList& rAttribs )
{
- maOoxData.maName = rAttribs.getString( XML_name );
+ maOoxData.maName = rAttribs.getString( XML_name, OUString() );
maOoxData.mnSheet = rAttribs.getInteger( XML_localSheetId, -1 );
maOoxData.mnFuncGroupId = rAttribs.getInteger( XML_functionGroupId, -1 );
maOoxData.mbMacro = rAttribs.getBool( XML_xlm, false );