diff options
author | ritsuka <[email protected]> | 2015-01-19 08:48:18 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2015-01-19 08:48:18 +0000 |
commit | f69f4e15cf1a4e010aef3f1a77c768425562cc67 (patch) | |
tree | 711364237b9eef8a3e8fa90f2ace9d8b02c82a0e /macosx/HBAttributedStringAdditions.h | |
parent | 889e86edd3289486cd2cd1d6abc4e21296983dad (diff) |
MacGui: moved the queue code from HBController to HBQueueController, reworked the way the queue synchronise itself between multiple instances to be more resilient (hopefully). Modified HBCore to take callback blocks instead of notifications.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6770 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBAttributedStringAdditions.h')
-rw-r--r-- | macosx/HBAttributedStringAdditions.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/macosx/HBAttributedStringAdditions.h b/macosx/HBAttributedStringAdditions.h new file mode 100644 index 000000000..bcc26e839 --- /dev/null +++ b/macosx/HBAttributedStringAdditions.h @@ -0,0 +1,16 @@ +// +// HBAttributedStringAdditions.h +// HandBrake +// +// Created by Damiano Galassi on 16/01/15. +// +// + +#import <Foundation/Foundation.h> + +@interface NSMutableAttributedString (HBAttributedStringAdditions) + +- (void)appendString:(NSString *)aString withAttributes:(NSDictionary *)aDictionary; + +@end + |