summaryrefslogtreecommitdiff
path: root/xmlsecurity/source/xmlsec/nss/xmlencryption_nssimpl.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmlsecurity/source/xmlsec/nss/xmlencryption_nssimpl.cxx')
-rw-r--r--xmlsecurity/source/xmlsec/nss/xmlencryption_nssimpl.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/xmlsecurity/source/xmlsec/nss/xmlencryption_nssimpl.cxx b/xmlsecurity/source/xmlsec/nss/xmlencryption_nssimpl.cxx
index 4c47f8a15c8f..aaa6f27656f4 100644
--- a/xmlsecurity/source/xmlsec/nss/xmlencryption_nssimpl.cxx
+++ b/xmlsecurity/source/xmlsec/nss/xmlencryption_nssimpl.cxx
@@ -125,7 +125,7 @@ SAL_CALL XMLEncryption_NssImpl :: encrypt(
}
//remember the position of the element to be signed
- sal_Bool isParentRef = sal_True;
+ bool isParentRef = true;
pEncryptedData = pTemplate->getNativeElement();
xmlNodePtr pParent = pEncryptedData->parent;
@@ -138,7 +138,7 @@ SAL_CALL XMLEncryption_NssImpl :: encrypt(
else
{
referenceNode = pEncryptedData->prev;
- isParentRef = sal_False;
+ isParentRef = false;
}
setErrorRecorder( );
@@ -226,7 +226,7 @@ SAL_CALL XMLEncryption_NssImpl :: decrypt(
pEncryptedData = pTemplate->getNativeElement() ;
//remember the position of the element to be signed
- sal_Bool isParentRef = sal_True;
+ bool isParentRef = true;
xmlNodePtr pParent = pEncryptedData->parent;
xmlNodePtr referenceNode;
@@ -237,7 +237,7 @@ SAL_CALL XMLEncryption_NssImpl :: decrypt(
else
{
referenceNode = pEncryptedData->prev;
- isParentRef = sal_False;
+ isParentRef = false;
}
setErrorRecorder( );