unison

Fork of Unison, a bi-directional file synchronization tool
git clone git://git.laack.co/unison.git
Log | Files | Refs | README | LICENSE

SSSelectableToolbarItem.m (355B)


      1 //
      2 //  SSToolbarItem.m
      3 //  SelectableToolbarHelper
      4 //
      5 //  Created by Steven Streeting on 19/06/2011.
      6 //  Copyright 2011 Torus Knot Software Ltd. All rights reserved.
      7 //
      8 
      9 #import "SSSelectableToolbarItem.h"
     10 
     11 
     12 @implementation SSSelectableToolbarItem
     13 
     14 @synthesize linkedView;
     15 
     16 -(void) dealloc
     17 {
     18         [linkedView release];
     19         [super dealloc];
     20 }
     21 
     22 @end