Remove CPTabStopType build warning

CPParagraphStyle.j defined CPTabStopType's four constants directly, with a comment noting they were "missing" but no @typedef for the type itself.

_CPRTFParser.j uses CPTabStopType as an ivar type and imports CPParagraphStyle.j directly, so the fix belongs in the defining file.

Added the missing @typedef CPTabStopType, same pattern as CPRulerOrientation.
This commit is contained in:
David Richardson
2026-08-20 20:05:38 -06:00
parent 253d6669eb
commit 6121caf75d
+1 -1
View File
@@ -26,7 +26,7 @@
CPParagraphStyleAttributeName = @"CPParagraphStyleAttributeName";
// Define missing global tab stop type constants
@typedef CPTabStopType
CPLeftTabStopType = 0;
CPRightTabStopType = 1;
CPCenterTabStopType = 2;