From af433b6fff17e4e835043797063061055643b614 Mon Sep 17 00:00:00 2001 From: Matteo Casalin Date: Sun, 13 Sep 2015 12:20:38 +0200 Subject: Fix precedence error Change-Id: I2720279f1e03e5a84da455cfd9074de157907e0b --- cui/source/dialogs/multipat.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cui') 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 ); -- cgit