cleanup of editor code, bug=209548, r=jfrancis, sr=blizzard

git-svn-id: svn://10.0.0.236/trunk@145270 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
brade%netscape.com
2003-07-28 13:13:50 +00:00
parent 9043145e12
commit 7b542e3e34
9 changed files with 370 additions and 652 deletions

View File

@@ -317,12 +317,12 @@ NS_IMETHODIMP ChangeCSSInlineStyleTxn::Merge(nsITransaction *aTransaction, PRBoo
NS_IMETHODIMP ChangeCSSInlineStyleTxn::GetTxnDescription(nsAString& aString)
{
aString.Assign(NS_LITERAL_STRING("ChangeCSSInlineStyleTxn: "));
aString.Assign(NS_LITERAL_STRING("ChangeCSSInlineStyleTxn: [mRemoveProperty == "));
if (PR_FALSE==mRemoveProperty)
aString += NS_LITERAL_STRING("[mRemoveProperty == false] ");
if (!mRemoveProperty)
aString += NS_LITERAL_STRING("false] ");
else
aString += NS_LITERAL_STRING("[mRemoveProperty == true] ");
aString += NS_LITERAL_STRING("true] ");
nsAutoString tempString;
mProperty->ToString(tempString);
aString += tempString;