summaryrefslogtreecommitdiff
path: root/UnoControls/source/controls/framecontrol.cxx
diff options
context:
space:
mode:
authorOlivier Hallot <olivier.hallot@alta.org.br>2011-12-09 14:00:09 -0200
committerStephan Bergmann <sbergman@redhat.com>2011-12-09 23:37:05 +0100
commitf43311dfb77342f0d003bee5336215f92500f15c (patch)
tree7f5ef6154f07850add2eb3f169508319f7e11889 /UnoControls/source/controls/framecontrol.cxx
parent1d1f049859e080b403c743f7e0604bd72475a824 (diff)
Fix for fdo43460, Part I, getLength to isEmpty
Part I Modules unoControl, accessibility and avmedia
Diffstat (limited to 'UnoControls/source/controls/framecontrol.cxx')
-rw-r--r--UnoControls/source/controls/framecontrol.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/UnoControls/source/controls/framecontrol.cxx b/UnoControls/source/controls/framecontrol.cxx
index 006924c85e4e..6b2919094f6f 100644
--- a/UnoControls/source/controls/framecontrol.cxx
+++ b/UnoControls/source/controls/framecontrol.cxx
@@ -203,7 +203,7 @@ void SAL_CALL FrameControl::createPeer( const Reference< XToolkit >& xToo
BaseControl::createPeer( xToolkit, xParentPeer );
if ( impl_getPeerWindow().is() )
{
- if( m_sComponentURL.getLength() > 0 )
+ if( !m_sComponentURL.isEmpty() )
{
impl_createFrame( getPeer(), m_sComponentURL, m_seqLoaderArguments );
}