diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-21 23:24:45 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-22 08:22:34 +0100 |
commit | d5b01ac24918c99eb859bf1b9e56879000ccf4a1 (patch) | |
tree | 5704dac715641b6f0087db96cb1112da25609d3e /uui | |
parent | 3ca9c83610a3b3bf646d7ccb84234dbcf8df1f1d (diff) |
bool improvements
Change-Id: I6df7ec9669452a025fbac55199927347ef84c6b9
Diffstat (limited to 'uui')
-rw-r--r-- | uui/source/fltdlg.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/uui/source/fltdlg.cxx b/uui/source/fltdlg.cxx index f6dc852c6151..1ed903925b0b 100644 --- a/uui/source/fltdlg.cxx +++ b/uui/source/fltdlg.cxx @@ -216,7 +216,7 @@ OUString FilterDialog::impl_buildUIFileName( const OUString& sName ) { // otherwise its really a url ... build short name by using INetURLObject ::com::sun::star::uno::Reference< ::com::sun::star::util::XStringWidth > xStringCalculator( new StringCalculator(&m_ftURL) ); - if( xStringCalculator.is() == sal_True ) + if( xStringCalculator.is() ) { INetURLObject aBuilder ( sName ); Size aSize = m_ftURL.GetOutputSize(); |