[RAPPS] Replaced double ternary operators with one if for readability

svn path=/branches/GSoC_2017/rapps/; revision=75809
This commit is contained in:
Alexander Shaposhnikov 2017-09-09 17:50:31 +00:00
parent d733214459
commit 94e82f5f37

View file

@ -19,8 +19,15 @@ class CRichEdit :
SendMessageW(EM_SETTEXTEX, (WPARAM) &SetText, (LPARAM) lpszText);
SetRangeFormatting(Len, Len + InsertedTextLen,
(dwEffects == CFM_LINK) ? (PathIsURLW(lpszText) ? dwEffects : 0) : dwEffects);
if ((dwEffects == CFM_LINK) && !PathIsURLW(lpszText))
{
// if text is not an URL, no styling is used
SetRangeFormatting(Len, Len + InsertedTextLen, 0);
}
else
{
SetRangeFormatting(Len, Len + InsertedTextLen, dwEffects);
}
}
}