Kaydet (Commit) af433b6f authored tarafından Matteo Casalin's avatar Matteo Casalin

Fix precedence error

Change-Id: I2720279f1e03e5a84da455cfd9074de157907e0b
üst 12b9341e
......@@ -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 );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment