From 10274aef55f9e3071959cf0bb4e84fabcde57a8c Mon Sep 17 00:00:00 2001 From: David Catmull Date: Sun, 12 Jun 2011 15:23:30 -0600 Subject: [PATCH] PBViewController.superController accessor --- PBViewController.h | 1 + PBViewController.m | 1 + 2 files changed, 2 insertions(+) diff --git a/PBViewController.h b/PBViewController.h index ec5dbd4..ad6e3d5 100644 --- a/PBViewController.h +++ b/PBViewController.h @@ -20,6 +20,7 @@ } @property (readonly) __weak PBGitRepository *repository; +@property (readonly) __weak PBGitWindowController *superController; @property(copy) NSString *status; @property(assign) BOOL isBusy; diff --git a/PBViewController.m b/PBViewController.m index a0de1da..c926c19 100644 --- a/PBViewController.m +++ b/PBViewController.m @@ -12,6 +12,7 @@ @implementation PBViewController @synthesize repository; +@synthesize superController; @synthesize status; @synthesize isBusy;