Kaydet (Commit) 0d9aa8cc authored tarafından Fridrich Štrba's avatar Fridrich Štrba

Sort the catch-all detection at the end

üst 1f65dc9e
......@@ -814,9 +814,9 @@ namespace
if (rA == rB)
return false;
if (rA.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("com.sun.star.text.FormatDetector")))
return true;
if (rB.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("com.sun.star.text.FormatDetector")))
return false;
if (rB.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("com.sun.star.text.FormatDetector")))
return true;
return rA < rB;
}
}
......
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