diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2007-02-27 10:55:41 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2007-02-27 10:55:41 +0000 |
commit | 98abc64b004c349035d6d8c123a4b76e18b467d7 (patch) | |
tree | 66e0b7b833f1e97dca12561d4630ee2ca8bc7b75 /sc/inc/dociter.hxx | |
parent | f8a8111979f0ed984f7ea63380cc4a6a2864a909 (diff) |
INTEGRATION: CWS calcwarnings (1.6.324); FILE MERGED
2006/11/28 13:24:32 nn 1.6.324.1: #i69284# warning-free: core, wntmsci10
Diffstat (limited to 'sc/inc/dociter.hxx')
-rw-r--r-- | sc/inc/dociter.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/inc/dociter.hxx b/sc/inc/dociter.hxx index a941104c82a7..3f8c5373ea11 100644 --- a/sc/inc/dociter.hxx +++ b/sc/inc/dociter.hxx @@ -4,9 +4,9 @@ * * $RCSfile: dociter.hxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: rt $ $Date: 2005-09-08 17:32:38 $ + * last change: $Author: vg $ $Date: 2007-02-27 11:55:41 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -268,7 +268,7 @@ public: executed. */ void SetStopOnMismatch( BOOL bVal ) { - nStopOnMismatch = (bVal ? nStopOnMismatchEnabled : + nStopOnMismatch = sal::static_int_cast<BYTE>(bVal ? nStopOnMismatchEnabled : nStopOnMismatchDisabled); } BOOL StoppedOnMismatch() const @@ -281,7 +281,7 @@ public: if an equal match is found. */ void SetTestEqualCondition( BOOL bVal ) { - nTestEqualCondition = (bVal ? + nTestEqualCondition = sal::static_int_cast<BYTE>(bVal ? nTestEqualConditionEnabled : nTestEqualConditionDisabled); } |