summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2014-05-09 18:12:23 +0200
committerMichael Stahl <mstahl@redhat.com>2014-05-09 18:35:55 +0200
commitece80453d541f6bfb5ce170b3e0009ade968d8df (patch)
treec45cafa71b3409229a7286825c85b4d54582f989
parent77e07086c9c5cac4841d2362c4ea89db0dd15b58 (diff)
warning C4389: '==' : signed/unsigned mismatch
Change-Id: Ie8bb8a422c2fdda85d2478dd029c2091267212c2
-rw-r--r--sw/source/core/layout/dbg_lay.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/layout/dbg_lay.cxx b/sw/source/core/layout/dbg_lay.cxx
index 87779c4011bc..5c563088203b 100644
--- a/sw/source/core/layout/dbg_lay.cxx
+++ b/sw/source/core/layout/dbg_lay.cxx
@@ -544,7 +544,7 @@ void SwImplProtocol::_Record( const SwFrm* pFrm, sal_uLong nFunction, sal_uLong
break;
case PROT_MOVE_FWD: bTmp = true; // NoBreak
case PROT_MOVE_BWD:
- if (nFunction == (bTmp ? 1 : 0))
+ if (nFunction == (bTmp ? 1U : 0U))
aOut.append("Fwd");
else
aOut.append("Bwd");