renamed most tweet-stuff to tentia

This commit is contained in:
Jeena Paradies 2012-10-19 21:17:26 +02:00
parent 0d49a3b275
commit 3a7c2f612a
362 changed files with 13308 additions and 561 deletions

27
NewMessageWindow.h Normal file
View file

@ -0,0 +1,27 @@
//
// NewTweetWindow.h
// Tentia
//
// Created by Jeena on 16.04.10.
// Licence: BSD (see attached LICENCE.txt file).
//
#import <Cocoa/Cocoa.h>
@interface NewMessageWindow : NSDocument
{
IBOutlet NSTextField *textField;
IBOutlet NSTextField *counter;
NSString *inReplyTostatusId;
}
@property (nonatomic, retain) IBOutlet NSTextField *textField;
@property (nonatomic, retain) IBOutlet NSTextField *counter;
- (IBAction)sendTweet:(NSControl *)control;
- (void)inReplyTo:(NSString *)userName statusId:(NSString *)statusId;
- (void)withString:(NSString *)aString;
@end