Merge pull request #3285 from enquora/CPRulerOrientation-address-build-warning

Address CPRulerOrientation build warning
This commit is contained in:
David Richardson
2026-08-20 19:59:14 -06:00
committed by GitHub
+5 -5
View File
@@ -29,11 +29,11 @@
@import "CPMenuItem.j"
// Orientations matching AppKit standards
// typedef enum CPRulerOrientation
CPHorizontalRuler = 0,
CPVerticalRuler = 1,
CPRulerOrientationHorizontal = 0,
CPRulerOrientationVertical = 1
@typedef CPRulerOrientation
CPHorizontalRuler = 0;
CPVerticalRuler = 1;
CPRulerOrientationHorizontal = 0;
CPRulerOrientationVertical = 1;
@class CPRulerView;
@class CPScrollView;