SideBar: Add ViewAction and ViewRemote objects

These two new classes can represent items in our SourceList
that refer to specific actions (such as comitting), or
specific Remotes.
This commit is contained in:
Pieter de Bie
2009-09-08 17:11:20 +02:00
parent c59d68bb3e
commit fb3a1705e3
7 changed files with 87 additions and 9 deletions
+18
View File
@@ -0,0 +1,18 @@
//
// PBSourceViewRemote.m
// GitX
//
// Created by Pieter de Bie on 9/8/09.
// Copyright 2009 __MyCompanyName__. All rights reserved.
//
#import "PBSourceViewRemote.h"
@implementation PBSourceViewRemote
- (NSImage *)icon
{
return [NSImage imageNamed:@"remote"];
}
@end