diff options
author | ritsuka <[email protected]> | 2013-10-15 11:36:51 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2013-10-15 11:36:51 +0000 |
commit | edc929027efbdade94a7e1c895308df8d058086b (patch) | |
tree | 6a1dd18b796c22d827e525457095ab26d2b09269 /macosx/HBQueueController.h | |
parent | 186685f0ab2f2db4e37d50e8291ef8997153d831 (diff) |
MacGUI: fixed a number of leaks/null-deferences/dead-code found by clang static analyzer.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5838 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBQueueController.h')
-rw-r--r-- | macosx/HBQueueController.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/macosx/HBQueueController.h b/macosx/HBQueueController.h index a4ae8a71f..3925eb4e6 100644 --- a/macosx/HBQueueController.h +++ b/macosx/HBQueueController.h @@ -48,7 +48,7 @@ BOOL fIsDragging; -@interface HBQueueController : NSWindowController <NSToolbarDelegate> +@interface HBQueueController : NSWindowController <NSToolbarDelegate, NSWindowDelegate> { hb_handle_t *fQueueEncodeLibhb; // reference to libhb HBController *fHBController; // reference to HBController @@ -106,7 +106,14 @@ BOOL fIsDragging; IBOutlet NSSlider *fSpacing; // debug #endif + // Text Styles + NSMutableParagraphStyle *ps; + NSDictionary *detailAttr; + NSDictionary *detailBoldAttr; + NSDictionary *titleAttr; + NSDictionary *shortHeightAttr; } + - (void)setPidNum: (int)myPidnum; - (void)setHandle: (hb_handle_t *)handle; - (void)setHBController: (HBController *)controller; |