sw/source/core/unocore/unodraw.cxx | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
New commits:
commit dfc4832049c140b7442c085062599aef1953e8fd
Author: Luboš Luňák <l.lunak@suse.cz>
Date: Wed Jun 6 18:17:50 2012 +0200
fix incorrect OSL_ENSURE -> SAL_WARN_IF conversion (condition not
inverted)
Change-Id: I57dfa64c55e046ed51797b2abeb7ba3242e637da
diff --git a/sw/source/core/unocore/unodraw.cxx
b/sw/source/core/unocore/unodraw.cxx index 662a8ff..329bed9 100644
--- a/sw/source/core/unocore/unodraw.cxx
+++ b/sw/source/core/unocore/unodraw.cxx
@@ -1174,7 +1174,7 @@ void SwXShape::setPropertyValue(const rtl::OUString&
rPropertyName, const uno::A else if(RES_OPAQUE == pEntry->nWID)
{
SvxShape* pSvxShape = GetSvxShape();
- SAL_WARN_IF(pSvxShape, "sw.uno", "No SvxShape
found!"); + SAL_WARN_IF(!pSvxShape, "sw.uno", "No
SvxShape found!"); if(pSvxShape)
{
SdrObject* pObj = pSvxShape->GetSdrObject();
@@ -1220,14 +1220,14 @@ void SwXShape::setPropertyValue(const
rtl::OUString& rPropertyName, const uno::A //To prevent this the connection
between format and attribute has to be broken before. const SwPosition
*pPos = aAnchor.GetCntntAnchor(); SwTxtNode *pTxtNode =
pPos->nNode.GetNode().GetTxtNode(); -
SAL_WARN_IF( pTxtNode->HasHints(), "sw.uno", "Missing FlyInCnt-Hint." ); +
SAL_WARN_IF( !pTxtNode->HasHints(), "sw.uno",
"Missing FlyInCnt-Hint." ); const xub_StrLen nIdx =
pPos->nContent.GetIndex(); SwTxtAttr * const pHnt =
pTxtNode->GetTxtAttrForCharAt(
nIdx, RES_TXTATR_FLYCNT );
- SAL_WARN_IF( pHnt && pHnt->Which() ==
RES_TXTATR_FLYCNT, + SAL_WARN_IF( !pHnt ||
pHnt->Which() != RES_TXTATR_FLYCNT, "sw.uno", "Missing FlyInCnt-Hint." ); -
SAL_WARN_IF( pHnt &&
pHnt->GetFlyCnt().GetFrmFmt() == pFmt, +
SAL_WARN_IF( !pHnt || pHnt->GetFlyCnt().GetFrmFmt() != pFmt, "sw.uno",
"Wrong TxtFlyCnt-Hint." ); const_cast<SwFmtFlyCnt&>(pHnt->GetFlyCnt())
.SetFlyFmt();
@@ -1237,7 +1237,7 @@ void SwXShape::setPropertyValue(const rtl::OUString&
rPropertyName, const uno::A RES_TXTATR_FLYCNT, nIdx );
//create a new one
SwTxtNode *pNd =
pInternalPam->GetNode()->GetTxtNode(); -
SAL_WARN_IF( pNd, "sw.uno", "Cursor not at TxtNode." ); +
SAL_WARN_IF( !pNd, "sw.uno", "Cursor not at TxtNode." );
SwFmtFlyCnt aFmt( pFmt );
pNd->InsertItem(aFmt,
pInternalPam->GetPoint() ->nContent.GetIndex(), 0 ); @@ -1306,14 +1306,14
@@ void SwXShape::setPropertyValue(const rtl::OUString& rPropertyName,
const uno::A //To prevent this the connection between format and attribute
has to be broken before. const SwPosition *pPos =
rOldAnchor.GetCntntAnchor(); SwTxtNode *pTxtNode =
pPos->nNode.GetNode().GetTxtNode(); -
SAL_WARN_IF( pTxtNode->HasHints(), "sw.uno", "Missing FlyInCnt-Hint." ); +
SAL_WARN_IF( !pTxtNode->HasHints(), "sw.uno",
"Missing FlyInCnt-Hint." ); const xub_StrLen nIdx =
pPos->nContent.GetIndex(); SwTxtAttr * const pHnt =
pTxtNode->GetTxtAttrForCharAt(
nIdx, RES_TXTATR_FLYCNT );
- SAL_WARN_IF( pHnt && pHnt->Which() ==
RES_TXTATR_FLYCNT, + SAL_WARN_IF( !pHnt ||
pHnt->Which() != RES_TXTATR_FLYCNT, "sw.uno", "Missing FlyInCnt-Hint." ); -
SAL_WARN_IF( pHnt &&
pHnt->GetFlyCnt().GetFrmFmt() == pFlyFmt, +
SAL_WARN_IF( !pHnt || pHnt->GetFlyCnt().GetFrmFmt() != pFlyFmt, "sw.uno",
"Wrong TxtFlyCnt-Hint." ); const_cast<SwFmtFlyCnt&>(pHnt->GetFlyCnt())
.SetFlyFmt();
@@ -1349,7 +1349,7 @@ void SwXShape::setPropertyValue(const rtl::OUString&
rPropertyName, const uno::A {
//the RES_TXTATR_FLYCNT needs to be added
now SwTxtNode *pNd = aPam.GetNode()->GetTxtNode(); -
SAL_WARN_IF( pNd, "sw.uno", "Crsr is not in a TxtNode." ); +
SAL_WARN_IF( !pNd, "sw.uno", "Crsr is not in a
TxtNode." ); SwFmtFlyCnt aFmt( pFlyFmt );
pNd->InsertItem(aFmt,
aPam.GetPoint()->nContent.GetIndex(),
0 );
Privacy Policy |
Impressum (Legal Info) |
Copyright information: Unless otherwise specified, all text and images
on this website are licensed under the
Creative Commons Attribution-Share Alike 3.0 License.
This does not include the source code of LibreOffice, which is
licensed under the Mozilla Public License (
MPLv2).
"LibreOffice" and "The Document Foundation" are
registered trademarks of their corresponding registered owners or are
in actual use as trademarks in one or more countries. Their respective
logos and icons are also subject to international copyright laws. Use
thereof is explained in our
trademark policy.