diff --git a/ChangeLog b/ChangeLog index a1a42821e..2efe7dfc8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,8 @@ * Source/NSScrollView.m: ([-initWithFrame:) create a hidden horizontal ruler for MacOS-X and OPENSTEP compatibility. Fix bug #13310 + * Source/NSRulerView.m: ([-dealloc]) Don't release _clientView as we + don't own it. Fixes bug #13382 2005-06-22 Fred Kiefer diff --git a/Source/NSRulerView.m b/Source/NSRulerView.m index 5a82513e2..43b73a877 100644 --- a/Source/NSRulerView.m +++ b/Source/NSRulerView.m @@ -872,7 +872,6 @@ static NSMutableDictionary *units = nil; - (void) dealloc { RELEASE(_unit); - RELEASE(_clientView); RELEASE(_accessoryView); RELEASE(_markers); RELEASE(_labelFormat);