openbsd-ports/x11/gnustep/paje/patches/patch-StatViewer_StatViewer_m
sebastia 7f1688d7cf Import Paje
Paje is an interactive and scalable trace-based visualization tool which
can be used for a large variety of visualizations including performance
monitoring of parallel applications, monitoring the execution of
processors in a large scale PC cluster or representing the behavior of
distributed applications.

OK landry@
2012-08-06 11:14:20 +00:00

16 lines
559 B
Plaintext

$OpenBSD: patch-StatViewer_StatViewer_m,v 1.1.1.1 2012/08/06 11:14:20 sebastia Exp $
Do not deallocate already deallocated objects
--- StatViewer/StatViewer.m.orig Tue Jul 10 14:01:28 2012
+++ StatViewer/StatViewer.m Tue Jul 10 14:01:38 2012
@@ -73,7 +73,7 @@
[entityTypeSelector removeAllItems];
[[matrix cells] makeObjectsPerformSelector:@selector(setRepresentedObject:)
withObject:nil];
- [matrix removeFromSuperview];
+ //[matrix removeFromSuperview];
[window release];
[super dealloc];
}