mirror of
https://github.com/QuasarApp/macdependency.git
synced 2025-04-29 05:44:31 +00:00
48 lines
742 B
Plaintext
48 lines
742 B
Plaintext
|
//
|
||
|
// ArchitecturesController.m
|
||
|
// MacDependency
|
||
|
//
|
||
|
// Created by Konrad Windszus on 22.08.09.
|
||
|
// Copyright 2009 Konrad Windszus. All rights reserved.
|
||
|
//
|
||
|
// Only used for root architectures.
|
||
|
//
|
||
|
#import "ArchitecturesController.h"
|
||
|
#import "MyDocument.h"
|
||
|
|
||
|
// declare private methods
|
||
|
@interface ArchitecturesController ()
|
||
|
@end
|
||
|
|
||
|
@implementation ArchitecturesController
|
||
|
|
||
|
- (id)initWithCoder:(NSCoder *)decoder {
|
||
|
self = [super initWithCoder:decoder];
|
||
|
if (self) {
|
||
|
|
||
|
}
|
||
|
return self;
|
||
|
}
|
||
|
|
||
|
- (void)dealloc
|
||
|
{
|
||
|
[super dealloc];
|
||
|
}
|
||
|
|
||
|
|
||
|
- (void)awakeFromNib
|
||
|
{
|
||
|
[super awakeFromNib];
|
||
|
}
|
||
|
|
||
|
- (void)setSelectionIndex:(NSUInteger)index {
|
||
|
// clear log
|
||
|
[document clearLog];
|
||
|
[document resetNumDependencies];
|
||
|
[super setSelectionIndex:index];
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
@end
|