summaryrefslogtreecommitdiffstats
path: root/stoc
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 23:04:47 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 23:04:47 +0000
commitc5eecd9c4f47d385230ca4d4795f385b0098c4cd (patch)
tree1ba255498c2e91f31fd73c7509363566cd723382 /stoc
parentINTEGRATION: CWS warnings01 (1.8.8); FILE MERGED (diff)
downloadcore-c5eecd9c4f47d385230ca4d4795f385b0098c4cd.tar.gz
core-c5eecd9c4f47d385230ca4d4795f385b0098c4cd.zip
INTEGRATION: CWS warnings01 (1.11.42); FILE MERGED
2005/09/22 19:55:28 sb 1.11.42.2: RESYNC: (1.11-1.12); FILE MERGED 2005/09/19 15:23:58 sb 1.11.42.1: #i53898# Made code warning-free.
Diffstat (limited to 'stoc')
-rw-r--r--stoc/source/registry_tdprovider/tdiface.cxx10
1 files changed, 7 insertions, 3 deletions
diff --git a/stoc/source/registry_tdprovider/tdiface.cxx b/stoc/source/registry_tdprovider/tdiface.cxx
index d3ec2c37be43..09011b365b40 100644
--- a/stoc/source/registry_tdprovider/tdiface.cxx
+++ b/stoc/source/registry_tdprovider/tdiface.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: tdiface.cxx,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 08:07:17 $
+ * last change: $Author: hr $ $Date: 2006-06-20 00:04:47 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -414,10 +414,10 @@ InterfaceTypeDescriptionImpl::InterfaceTypeDescriptionImpl(
const Sequence< OUString > & rOptionalBaseTypes,
const Sequence< sal_Int8 > & rBytes, bool published )
: _xTDMgr( xTDMgr )
+ , _aBytes( rBytes )
, _aName( rName )
, _aBaseTypes( rBaseTypes )
, _aOptionalBaseTypes( rOptionalBaseTypes )
- , _aBytes( rBytes )
, _membersInit( false )
, _published( published )
{
@@ -507,6 +507,10 @@ Sequence< Reference< XInterfaceMemberTypeDescription > > InterfaceTypeDescriptio
new stoc::registry_tdprovider::FunctionDescription(
_xTDMgr, _aBytes, j));
break;
+
+ default:
+ OSL_ASSERT(false);
+ break;
}
}
}