summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2008-06-16 11:40:25 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2008-06-16 11:40:25 +0000
commitd615da8014caa9009b82ec01c36d0750fa62ba63 (patch)
tree23a84403e2beab96e64612fea435e203f9e52604
parent96606e84f5564e51e930e967c299485da51ad03f (diff)
INTEGRATION: CWS rptchart02 (1.7.2); FILE MERGED
2008/05/29 07:29:09 oj 1.7.2.1: unused var when compile linux with debug
-rw-r--r--extensions/source/propctrlr/cellbindinghandler.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/source/propctrlr/cellbindinghandler.cxx b/extensions/source/propctrlr/cellbindinghandler.cxx
index 00bc68fe7535..5b5fce27dd39 100644
--- a/extensions/source/propctrlr/cellbindinghandler.cxx
+++ b/extensions/source/propctrlr/cellbindinghandler.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: cellbindinghandler.cxx,v $
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
* This file is part of OpenOffice.org.
*
@@ -432,7 +432,7 @@ namespace pcr
sal_Bool bSuccess =
#endif
_rPropertyValue >>= xBinding;
- DBG_ASSERT( bSuccess, "CellBindingPropertyHandler::convertToControlValue: invalid value (1)!" );
+ OSL_ENSURE( bSuccess, "CellBindingPropertyHandler::convertToControlValue: invalid value (1)!" );
// the only value binding we support so far is linking to spreadsheet cells
aControlValue <<= m_pHelper->getStringAddressFromCellBinding( xBinding );
@@ -446,7 +446,7 @@ namespace pcr
sal_Bool bSuccess =
#endif
_rPropertyValue >>= xSource;
- DBG_ASSERT( bSuccess, "CellBindingPropertyHandler::convertToControlValue: invalid value (2)!" );
+ OSL_ENSURE( bSuccess, "CellBindingPropertyHandler::convertToControlValue: invalid value (2)!" );
// the only value binding we support so far is linking to spreadsheet cells
aControlValue <<= m_pHelper->getStringAddressFromCellListSource( xSource );