From 4a5a25bb65292ded12a8c17a466cac6a008c9e00 Mon Sep 17 00:00:00 2001 From: David Richardson Date: Fri, 28 Aug 2026 20:57:03 -0600 Subject: [PATCH] Fix undeclared _clientView instance variable in CPRulerView Declare _clientView within the CPRulerView instance variable block. This resolves a cold build compilation failure where the Objective-J parser flags assignments to the undeclared variable as illegal global variable creations. --- AppKit/CPTextView/CPRulerView.j | 2 ++ 1 file changed, 2 insertions(+) diff --git a/AppKit/CPTextView/CPRulerView.j b/AppKit/CPTextView/CPRulerView.j index 639e6d9cb..75edca167 100644 --- a/AppKit/CPTextView/CPRulerView.j +++ b/AppKit/CPTextView/CPRulerView.j @@ -215,6 +215,8 @@ CPRulerOrientationVertical = 1; CPScrollView _scrollView @accessors(property=scrollView); CPRulerOrientation _orientation @accessors(property=orientation); + CPView _clientView; + float _ruleThickness @accessors(property=ruleThickness); float _reservedThicknessForMarkers; CPArray _markers;