mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
[RAPPS] Replaced double ternary operators with one if for readability
svn path=/branches/GSoC_2017/rapps/; revision=75809
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user