summaryrefslogtreecommitdiffstats
path: root/cui
diff options
context:
space:
mode:
authorMatteo Casalin <matteo.casalin@yahoo.com>2015-09-13 12:20:38 +0200
committerMatteo Casalin <matteo.casalin@yahoo.com>2015-09-13 12:21:23 +0200
commitaf433b6fff17e4e835043797063061055643b614 (patch)
tree8fdbba38b0dd4ea49f72db4a77da76a69b9bde72 /cui
parenttdf#39468 - Translate German comments. (diff)
downloadcore-af433b6fff17e4e835043797063061055643b614.tar.gz
core-af433b6fff17e4e835043797063061055643b614.zip
Fix precedence error
Change-Id: I2720279f1e03e5a84da455cfd9074de157907e0b
Diffstat (limited to 'cui')
-rw-r--r--cui/source/dialogs/multipat.cxx2
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 );