From abb5b0c1d72f6d9c6b041494e4e43042bdd12852 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Fri, 18 Jul 2014 21:20:21 -0400 Subject: [PATCH] Decided not to use removeFromSuperviewWithoutNeedingRedraw at mikeash in irc.freenode.net/#macdev's suggestion (he basically said the documentation's description of the difference is "gibberish" and that I shouldn't need it). Let's just hope that stays the case... --- redo/controls_darwin.m | 1 - 1 file changed, 1 deletion(-) diff --git a/redo/controls_darwin.m b/redo/controls_darwin.m index f7554f5..e1cdb8f 100644 --- a/redo/controls_darwin.m +++ b/redo/controls_darwin.m @@ -12,7 +12,6 @@ void unparent(id control) { [toNSView(control) retain]; // save from being freed when released by the removal selector below - // TODO removeFromSuperviewWithoutNeedingDisplay? [toNSView(control) removeFromSuperview]; }