Update release

This commit is contained in:
vczh
2023-04-09 03:49:54 -07:00
parent 5d28616d53
commit 2627b8e659
31 changed files with 29157 additions and 29918 deletions
-7
View File
@@ -3067,13 +3067,6 @@ WindowsDirect2DParagraph
TextRange(){}
TextRange(vint _start, vint _end):start(_start),end(_end){}
inline vint Compare(const TextRange& value)const
{
vint result;
if ((result = start - value.start) != 0) return result;
if ((result = end - value.end) != 0) return result;
return 0;
}
GUI_DEFINE_COMPARE_OPERATORS(TextRange)
};