summaryrefslogtreecommitdiff
path: root/configmgr
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 22:32:33 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 22:32:33 +0000
commit59dc03b091e43bb79d02cfd023ca4fb310c84cde (patch)
tree66802f9ab13c6dbebd0439afd9ac6b49f7160c8d /configmgr
parentebfae3a98070f69921a81d54779fa8ad818b645c (diff)
INTEGRATION: CWS warnings01 (1.18.4); FILE MERGED
2006/02/14 10:17:42 cd 1.18.4.1: #i55991# Fix warnings for ms c++ compiler
Diffstat (limited to 'configmgr')
-rw-r--r--configmgr/source/treemgr/nodechangeimpl.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/configmgr/source/treemgr/nodechangeimpl.cxx b/configmgr/source/treemgr/nodechangeimpl.cxx
index 9fc6c8376e0c..eb3f6902cb6c 100644
--- a/configmgr/source/treemgr/nodechangeimpl.cxx
+++ b/configmgr/source/treemgr/nodechangeimpl.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: nodechangeimpl.cxx,v $
*
- * $Revision: 1.18 $
+ * $Revision: 1.19 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 04:30:12 $
+ * last change: $Author: hr $ $Date: 2006-06-19 23:32:33 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -486,7 +486,7 @@ SetResetImpl::~SetResetImpl()
RelativePath SetResetImpl::doGetChangingNodePath(ChangeCount _ix) const
{
OSL_ENSURE( _ix < m_aTreeChanges.size() || _ix == scCommonBase, "Illegal Change index" );
- OSL_ASSERT( scCommonBase > m_aTreeChanges.size() );
+ OSL_ASSERT( static_cast<size_t>(scCommonBase) > m_aTreeChanges.size() );
if ( _ix < m_aTreeChanges.size() )
return RelativePath( m_aTreeChanges[_ix].m_aElementName);