aboutsummaryrefslogtreecommitdiff
path: root/AppKit
diff options
context:
space:
mode:
authorGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2011-01-20 21:00:19 +0000
committerGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2011-01-20 21:00:19 +0000
commitabd076bda593dcddb01c54e610fcd370dc48d31f (patch)
tree6d15e7ae9923560ceb8616c83c2ce9ba1254e94c /AppKit
parent4be4c028253f454281e2347705c5d2e8b13c7d52 (diff)
[Author: avi]
Pull __weak modifier from variable whose value is actually owned. R=thakis DELTA=1 (0 added, 0 deleted, 1 changed)
Diffstat (limited to 'AppKit')
-rw-r--r--AppKit/GTMWindowSheetController.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/AppKit/GTMWindowSheetController.m b/AppKit/GTMWindowSheetController.m
index 60cd611..bf85e59 100644
--- a/AppKit/GTMWindowSheetController.m
+++ b/AppKit/GTMWindowSheetController.m
@@ -23,7 +23,7 @@
@interface GTMWSCSheetInfo : NSObject {
@public
- __weak NSWindow* overlayWindow_;
+ NSWindow* overlayWindow_;
// delegate data
__weak id modalDelegate_;