summaryrefslogtreecommitdiff
path: root/sc/source/ui/vba/vbavalidation.cxx
diff options
context:
space:
mode:
authorOlivier Hallot <olivier.hallot@alta.org.br>2012-01-06 14:22:10 -0200
committerOlivier Hallot <olivier.hallot@alta.org.br>2012-01-07 07:37:38 -0200
commit49e11ffbe1cc04f2855b18acd501954d80901efa (patch)
tree20bfbbab637d13ea81e8c467b59189701fedf1e4 /sc/source/ui/vba/vbavalidation.cxx
parente4ce7225dd987f9b2f250f055d9688de79931444 (diff)
Fix for fdo43460 Part XXX getLength() to isEmpty()
Part XXX Modules sc
Diffstat (limited to 'sc/source/ui/vba/vbavalidation.cxx')
-rw-r--r--sc/source/ui/vba/vbavalidation.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/vba/vbavalidation.cxx b/sc/source/ui/vba/vbavalidation.cxx
index 2c52556b23a9..25c8c47d0424 100644
--- a/sc/source/ui/vba/vbavalidation.cxx
+++ b/sc/source/ui/vba/vbavalidation.cxx
@@ -302,9 +302,9 @@ ScVbaValidation::Add( const uno::Any& Type, const uno::Any& AlertStyle, const un
xCond->setOperator( conOperator );
}
- if ( sFormula1.getLength() )
+ if ( !sFormula1.isEmpty() )
xCond->setFormula1( sFormula1 );
- if ( sFormula2.getLength() )
+ if ( !sFormula2.isEmpty() )
xCond->setFormula2( sFormula2 );
lcl_setValidationProps( m_xRange, xProps );