diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2015-09-13 12:20:38 +0200 |
---|---|---|
committer | Matteo Casalin <matteo.casalin@yahoo.com> | 2015-09-13 12:21:23 +0200 |
commit | af433b6fff17e4e835043797063061055643b614 (patch) | |
tree | 8fdbba38b0dd4ea49f72db4a77da76a69b9bde72 /cui/source/dialogs/multipat.cxx | |
parent | 12b9341e45f3b476c5ea9ac83845e53121e15876 (diff) |
Fix precedence error
Change-Id: I2720279f1e03e5a84da455cfd9074de157907e0b
Diffstat (limited to 'cui/source/dialogs/multipat.cxx')
-rw-r--r-- | cui/source/dialogs/multipat.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/dialogs/multipat.cxx b/cui/source/dialogs/multipat.cxx index 2b91b89066f2..d04fd57402c8 100644 --- a/cui/source/dialogs/multipat.cxx +++ b/cui/source/dialogs/multipat.cxx @@ -315,7 +315,7 @@ void SvxMultiPathDialog::SetPath( const OUString& rPath ) bool bIsSystemPath = osl::FileBase::getSystemPathFromFileURL(sPath, sSystemPath) == osl::FileBase::E_None; - const OUString sEntry( "\t" + bIsSystemPath ? sSystemPath : sPath); + const OUString sEntry( "\t" + (bIsSystemPath ? sSystemPath : sPath)); SvTreeListEntry* pEntry = m_pRadioLB->InsertEntry( sEntry ); OUString* pURL = new OUString( sPath ); pEntry->SetUserData( pURL ); |