textrendering/texthandling/stext/TXTSTYLE.CPP
branchRCL_3
changeset 55 336bee5c2d35
parent 54 748ec5531811
--- a/textrendering/texthandling/stext/TXTSTYLE.CPP	Tue Aug 31 17:01:26 2010 +0300
+++ b/textrendering/texthandling/stext/TXTSTYLE.CPP	Wed Sep 01 12:39:40 2010 +0100
@@ -24,11 +24,6 @@
 #include "TXTFRMAT.H"
 #include "TXTSTD.H"
 
-#include "OstTraceDefinitions.h"
-#ifdef OST_TRACE_COMPILER_IN_USE
-#include "TXTSTYLETraces.h"
-#endif
-
 #ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
 #include "TXTFMLYR_INTERNAL.H"
 #include "TXTSTYLE_INTERNAL.H"
@@ -169,11 +164,6 @@
 			{
 			TInt index=IndexByPtr(info.iStyleForNextPara);
 			// ASSERT: The style-to-follow is present in the list.
-			if (!((info.iStyleForNextPara==NULL) ||
-	                ((info.iStyleForNextPara) && (index!=KErrNotFound && index>=0 && index<styleCount))))
-			    {
-			    OstTrace0( TRACE_DUMP, CSTYLELIST_DBGTESTINVARIANT, "Invariant" );
-			    }
 			__ASSERT_DEBUG(
 				(info.iStyleForNextPara==NULL) ||
 				((info.iStyleForNextPara) && (index!=KErrNotFound && index>=0 && index<styleCount)),User::Invariant());
@@ -258,15 +248,7 @@
 @return A const reference to the style at position aIndex in the array. 
 @return A non-const reference to the style at position aIndex in the array. */
 	{
-	if (!iList)
-	    {
-	    OstTrace0( TRACE_FATAL, CSTYLELIST_AT, "EStyleIntegrityError" );
-	    }
 	__ASSERT_ALWAYS(iList,Panic(EStyleIntegrityError));
-	if (aIndex<0 || aIndex>=iList->Count())
-	    {
-	    OstTrace0( TRACE_DUMP, DUP3_CSTYLELIST_AT, "EStyleIndexOutOfRange" );
-	    }
 	__ASSERT_DEBUG(aIndex>=0 && aIndex<iList->Count(),Panic(EStyleIndexOutOfRange));
 	
 	return (*iList)[aIndex];
@@ -275,15 +257,7 @@
 
 EXPORT_C RParagraphStyleInfo& CStyleList::At(TInt aIndex)
 	{
-	if (!iList)
-	    {
-	    OstTrace0( TRACE_FATAL, DUP2_CSTYLELIST_AT, "EStyleIntegrityError" );
-	    }
 	__ASSERT_ALWAYS(iList,Panic(EStyleIntegrityError));
-	if (aIndex<0 || aIndex>=iList->Count())
-	    {
-	    OstTrace0( TRACE_DUMP, DUP1_CSTYLELIST_AT, "EStyleIndexOutOfRange" );
-	    }
 	__ASSERT_DEBUG(aIndex>=0 && aIndex<iList->Count(),Panic(EStyleIndexOutOfRange));
 
 	return (*iList)[aIndex];
@@ -359,10 +333,6 @@
 		TInt offset=(set.iStyleForNextPara!=NULL)
 			? IndexByPtr(style)
 			: -1;
-			if (!(offset==-1 || (offset>=0 && offset<Count())))
-			    {
-			    OstTrace0( TRACE_DUMP, CSTYLELIST_EXTERNALIZEL, "EStyleIntegrityError" );
-			    }
 		__ASSERT_DEBUG(offset==-1 || (offset>=0 && offset<Count()),Panic(EStyleIntegrityError));
 		aStream.WriteInt8L(offset);
 		}
@@ -456,10 +426,6 @@
 		if (cur_style.iStyle == aStyle)
 			{
 			// Assert that the style must occur only once in the style list.
-			if (index != -1)
-			    {
-			    OstTrace0( TRACE_DUMP, CSTYLELIST_REMOVE, "EStyleIntegrityError" );
-			    }
 			__ASSERT_DEBUG(index == -1,Panic(EStyleIntegrityError));
 			index = i;
 			}
@@ -493,10 +459,6 @@
 @return KErrNone if successful, or KErrNotFound if the first style contained 
 in the argument (aStyleSet.iStyle) is not in the style list. */
 	{
-	if (IndexByPtr(aStyleSet.iStyleForNextPara) == KErrNotFound)
-	    {
-	    OstTrace0( TRACE_FATAL, CSTYLELIST_SETSTYLETOFOLLOW, "EStyleIntegrityError" );
-	    }
 	__ASSERT_ALWAYS( IndexByPtr(aStyleSet.iStyleForNextPara) != KErrNotFound, Panic(EStyleIntegrityError) );
 	__TEST_INVARIANT;