mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
24 lines
343 B
Objective-C
24 lines
343 B
Objective-C
//
|
|
// PBStashViewController.h
|
|
// GitX
|
|
//
|
|
// Created by David Catmull on 20-06-11.
|
|
// Copyright 2011. All rights reserved.
|
|
//
|
|
|
|
#import "PBStashViewController.h"
|
|
#import "PBGitStash.h"
|
|
|
|
@implementation PBStashViewController
|
|
|
|
- (void) awakeFromNib
|
|
{
|
|
}
|
|
|
|
- (void) showStash:(PBGitStash*)stash
|
|
{
|
|
[webController changeContentTo:stash];
|
|
}
|
|
|
|
@end
|