added opening conversation view in new window to OS X

This commit is contained in:
Jeena Paradies 2013-04-16 23:20:08 +02:00
parent 11e6da5592
commit 142b4d4dd3
13 changed files with 481 additions and 37 deletions

View file

@ -11,9 +11,12 @@
#import "Constants.h"
@interface ViewDelegate : NSObject {
WebView *timelineView; WebView *oauthView;
WebView *timelineView;
WebView *oauthView;
NSMutableArray *conversationViews;
}
@property (nonatomic, assign) WebView *timelineView;@property (nonatomic, assign) WebView *oauthView;
@property (nonatomic, assign) WebView *timelineView;
@property (nonatomic, assign) WebView *oauthView;
@property (nonatomic, assign) NSMutableArray *conversationViews;
@end