summaryrefslogtreecommitdiff
path: root/connectivity/inc
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2010-10-10 19:46:48 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2010-10-10 19:46:48 -0500
commit88e1f3d8f884c326aaf92ad0e18e96ece244b8da (patch)
tree9d6250ad30fc3d9f9ad6280398ca093de7b0b170 /connectivity/inc
parent2811da61adac63e4da78a1d2c5e1f90090e98798 (diff)
merge vosremoval-diagnoses patch
Diffstat (limited to 'connectivity/inc')
-rw-r--r--connectivity/inc/connectivity/FValue.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/inc/connectivity/FValue.hxx b/connectivity/inc/connectivity/FValue.hxx
index e4fe1b64e626..66b9123bf0e8 100644
--- a/connectivity/inc/connectivity/FValue.hxx
+++ b/connectivity/inc/connectivity/FValue.hxx
@@ -309,10 +309,10 @@ namespace connectivity
}
sal_Bool isBound() const { return m_bBound; }
- void setBound(sal_Bool _bBound) { m_bBound = _bBound ? true : false; }
+ void setBound(sal_Bool _bBound) { m_bBound = _bBound ? 1 : 0; }
sal_Bool isModified() const { return m_bModified; }
- void setModified(sal_Bool _bMod=sal_True){ m_bModified = _bMod ? true : false; }
+ void setModified(sal_Bool _bMod=sal_True){ m_bModified = _bMod ? 1 : 0; }
sal_Bool isSigned() const { return m_bSigned; }
void setSigned(sal_Bool _bMod=sal_True);