mirror of
https://github.com/QuasarApp/macdependency.git
synced 2025-04-27 12:54:31 +00:00
27 lines
429 B
Objective-C
27 lines
429 B
Objective-C
//
|
|
// AutoExpandOutlineView.m
|
|
// MacDependency
|
|
//
|
|
// Created by Konrad Windszus on 03.09.09.
|
|
// Copyright 2009 Konrad Windszus. All rights reserved.
|
|
//
|
|
|
|
#import "AutoExpandOutlineView.h"
|
|
|
|
|
|
@implementation AutoExpandOutlineView
|
|
|
|
|
|
// gets called after binding has changed
|
|
- (void)reloadData;
|
|
{
|
|
[super reloadData];
|
|
|
|
// auto expand root item
|
|
NSTreeNode* item = [self itemAtRow:0];
|
|
if (item)
|
|
[self expandItem:item];
|
|
}
|
|
|
|
@end
|