summaryrefslogtreecommitdiff
path: root/idl
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2002-06-14 11:22:12 +0000
committerRüdiger Timm <rt@openoffice.org>2002-06-14 11:22:12 +0000
commit470b874c08fb86fb10c440621f49e634547b4710 (patch)
tree9a93e2b6081a0cd3a3ebc5726bd9af81ca85ee8c /idl
parentcc0c1ffde47ab94f61302691e3db4a680c70174c (diff)
#100000# avoid german umlauts
Diffstat (limited to 'idl')
-rw-r--r--idl/source/objects/slot.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/idl/source/objects/slot.cxx b/idl/source/objects/slot.cxx
index c94ffe9d36d5..f51055c1513e 100644
--- a/idl/source/objects/slot.cxx
+++ b/idl/source/objects/slot.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: slot.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: mba $ $Date: 2002-06-03 11:49:52 $
+ * last change: $Author: rt $ $Date: 2002-06-14 12:22:12 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1104,21 +1104,21 @@ void SvMetaSlot::Insert( SvSlotElementList& rList, const ByteString & rPrefix,
bFound = TRUE;
}
- DBG_ASSERT(!bFound, "SlotId ist doppelt !");
+ DBG_ASSERT(!bFound, "Duplicate SlotId!");
nPos = bFound ? nMid : nLow;
}
DBG_ASSERT( nPos <= nListCount,
- "nPos zu groá" );
+ "nPos too large" );
DBG_ASSERT( nPos == nListCount || nId <=
(USHORT) rList.GetObject(nPos)->xSlot->GetSlotId().GetValue(),
- "Nachfolger hat kleinere SlotId" );
+ "Successor has lower SlotId" );
DBG_ASSERT( nPos == 0 || nId >
(USHORT) rList.GetObject(nPos-1)->xSlot->GetSlotId().GetValue(),
- "Vorg„nger hat gr”áere SlotId" );
+ "Predecessor has higher SlotId" );
DBG_ASSERT( nPos+1 >= nListCount || nId <
(USHORT) rList.GetObject(nPos+1)->xSlot->GetSlotId().GetValue(),
- "Nachfolger hat kleinere SlotId" );
+ "Successor has lower SlotId" );
rList.Insert( new SvSlotElement( this, rPrefix ), nPos );