delegate getter

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@39963 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Riccardo Mottola 2016-07-07 09:23:52 +00:00
parent 93a9d4bb47
commit 6139623d1e
2 changed files with 6 additions and 0 deletions

View file

@ -36,6 +36,7 @@
}
- (void) setDebugger:(PCDebugger *)theDebugger;
- (id <PCDebuggerViewDelegateProtocol>)delegate;
- (void) setDelegate:(id <PCDebuggerViewDelegateProtocol>) vd;
- (void) setCurrentFile: (NSString *)fileName;
- (NSString *) currentFile;

View file

@ -41,6 +41,11 @@
debugger = theDebugger;
}
- (id <PCDebuggerViewDelegateProtocol>)delegate
{
return viewDelegate;
}
- (void) setDelegate:(id <PCDebuggerViewDelegateProtocol>) vd
{
if (viewDelegate != vd)