diff options
author | Olivier Hallot <olivier.hallot@alta.org.br> | 2012-01-06 14:22:10 -0200 |
---|---|---|
committer | Olivier Hallot <olivier.hallot@alta.org.br> | 2012-01-07 07:37:38 -0200 |
commit | 49e11ffbe1cc04f2855b18acd501954d80901efa (patch) | |
tree | 20bfbbab637d13ea81e8c467b59189701fedf1e4 /sc/source/ui/vba/vbafiledialog.cxx | |
parent | e4ce7225dd987f9b2f250f055d9688de79931444 (diff) |
Fix for fdo43460 Part XXX getLength() to isEmpty()
Part XXX
Modules
sc
Diffstat (limited to 'sc/source/ui/vba/vbafiledialog.cxx')
-rw-r--r-- | sc/source/ui/vba/vbafiledialog.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/vba/vbafiledialog.cxx b/sc/source/ui/vba/vbafiledialog.cxx index 653117fad9dd..cb4917d4c9c3 100644 --- a/sc/source/ui/vba/vbafiledialog.cxx +++ b/sc/source/ui/vba/vbafiledialog.cxx @@ -152,7 +152,7 @@ ScVbaFileDialog::Show( ) throw (::com::sun::star::uno::RuntimeException) if ( aObj.GetProtocol() == INET_PROT_FILE ) { aTemp = aObj.PathToFileName(); - m_sSelectedItems[i] = aTemp.getLength() > 0 ? aTemp : m_sSelectedItems[i]; + m_sSelectedItems[i] = aTemp.isEmpty() ? m_sSelectedItems[i] : aTemp; } } } |