summaryrefslogtreecommitdiff
path: root/basctl/source
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2004-09-08 13:31:29 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2004-09-08 13:31:29 +0000
commit07045ca057ec0c463c2e76e74e0005681afff040 (patch)
tree4e5bed4e2187d0092394396e28d648ffade334b2 /basctl/source
parent549345b4c1c0bba212885ae680b793719b10d19a (diff)
INTEGRATION: CWS ooo20040704 (1.14.152); FILE MERGED
2004/08/09 14:23:59 vg 1.14.152.2: RESYNC MERGED 1.14 1.15 Everything below this line will be added to the revision comment. 2004/06/29 07:41:35 cmc 1.14.152.1: #i30801# allow using system stl if possible
Diffstat (limited to 'basctl/source')
-rw-r--r--basctl/source/dlged/propbrw.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/basctl/source/dlged/propbrw.cxx b/basctl/source/dlged/propbrw.cxx
index 35d52bf5484e..f63ad7847225 100644
--- a/basctl/source/dlged/propbrw.cxx
+++ b/basctl/source/dlged/propbrw.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: propbrw.cxx,v $
*
- * $Revision: 1.15 $
+ * $Revision: 1.16 $
*
- * last change: $Author: rt $ $Date: 2004-07-12 15:55:07 $
+ * last change: $Author: rt $ $Date: 2004-09-08 14:31:29 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -408,7 +408,8 @@ sal_Bool PropBrw::Close()
if (pGroupIterator)
delete pGroupIterator;
}
- return new ::comphelper::OComposedPropertySet(Sequence< Reference< XPropertySet > >(aSets.begin(), aSets.size()));
+ Reference< XPropertySet > *pSets = aSets.empty() ? 0 : &aSets[0];
+ return new ::comphelper::OComposedPropertySet(Sequence< Reference< XPropertySet > >(pSets, aSets.size()));
}
//----------------------------------------------------------------------------