mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-03-17 08:01:24 +00:00
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:
parent
93a9d4bb47
commit
6139623d1e
2 changed files with 6 additions and 0 deletions
|
@ -36,6 +36,7 @@
|
|||
}
|
||||
|
||||
- (void) setDebugger:(PCDebugger *)theDebugger;
|
||||
- (id <PCDebuggerViewDelegateProtocol>)delegate;
|
||||
- (void) setDelegate:(id <PCDebuggerViewDelegateProtocol>) vd;
|
||||
- (void) setCurrentFile: (NSString *)fileName;
|
||||
- (NSString *) currentFile;
|
||||
|
|
|
@ -41,6 +41,11 @@
|
|||
debugger = theDebugger;
|
||||
}
|
||||
|
||||
- (id <PCDebuggerViewDelegateProtocol>)delegate
|
||||
{
|
||||
return viewDelegate;
|
||||
}
|
||||
|
||||
- (void) setDelegate:(id <PCDebuggerViewDelegateProtocol>) vd
|
||||
{
|
||||
if (viewDelegate != vd)
|
||||
|
|
Loading…
Reference in a new issue