cui/source/dialogs/multipat.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit af433b6fff17e4e835043797063061055643b614 Author: Matteo Casalin <matteo.casa...@yahoo.com> Date: Sun Sep 13 12:20:38 2015 +0200 Fix precedence error Change-Id: I2720279f1e03e5a84da455cfd9074de157907e0b diff --git a/cui/source/dialogs/multipat.cxx b/cui/source/dialogs/multipat.cxx index 2b91b89..d04fd57 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 ); _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits