diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-07-16 17:48:04 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-07-16 17:58:01 +0200 |
commit | 802b66092c441065278a879efb5da24fab08a31b (patch) | |
tree | ded3e7a3504953143dd1def5d2815cc11f13ff7a /sw | |
parent | 2a4c55f6d46aec5164ec2ec189ee39cf71c9308c (diff) |
warning C4805 unsafe mix of type sal_Bool and type bool
Change-Id: I2d65386fb697cbd62768cbcc565611d9a5fdb068
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/ui/index/swuiidxmrk.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/index/swuiidxmrk.cxx b/sw/source/ui/index/swuiidxmrk.cxx index 6b8673268ac3..c754910561fb 100644 --- a/sw/source/ui/index/swuiidxmrk.cxx +++ b/sw/source/ui/index/swuiidxmrk.cxx @@ -1232,7 +1232,7 @@ IMPL_LINK_NOARG(SwAuthorMarkPane, InsertHdl) //insert or update the SwAuthorityField... if(pSh) { - sal_Bool bDifferent = sal_False; + bool bDifferent = false; OSL_ENSURE(m_sFields[AUTH_FIELD_IDENTIFIER].Len() , "No Id is set!"); OSL_ENSURE(m_sFields[AUTH_FIELD_AUTHORITY_TYPE].Len() , "No authority type is set!"); //check if the entry already exists with different content |