diff options
author | dynaflash <[email protected]> | 2008-06-17 12:40:17 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2008-06-17 12:40:17 +0000 |
commit | cd88f151467ea62aedf43aceed2452bf122b82b9 (patch) | |
tree | 552c1fbe131f4e90f862075bb44f234643bf292a /macosx/HBQueueController.h | |
parent | 710de0e779f29244204c638ee503b6db4eefc1c0 (diff) |
MacGui: convert HBQueueController to be a subclass of NSWindowController - kudos again to blindjimmy
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1515 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBQueueController.h')
-rw-r--r-- | macosx/HBQueueController.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/macosx/HBQueueController.h b/macosx/HBQueueController.h index a8216c576..9fa4d67ec 100644 --- a/macosx/HBQueueController.h +++ b/macosx/HBQueueController.h @@ -198,7 +198,7 @@ BOOL fIsDragging; //------------------------------------------------------------------------------------ -@interface HBQueueController : NSObject +@interface HBQueueController : NSWindowController { hb_handle_t *fHandle; // reference to libhb HBController *fHBController; // reference to HBController @@ -221,8 +221,8 @@ BOOL fIsDragging; #endif NSTimer *fAnimationTimer; // animates the icon of the current job in the queue outline view int fAnimationIndex; // used to generate name of image used to animate the current job in the queue outline view - - // +---------------fQueueWindow----------------+ + + // +------------------window-------------------+ // |+-------------fCurrentJobPane-------------+| // || || // || || @@ -238,8 +238,6 @@ BOOL fIsDragging; // || || // |+-----------------------------------------+| // +-------------------------------------------+ - - IBOutlet NSWindow *fQueueWindow; // fCurrentJobPane - visible only when processing a job IBOutlet NSView *fCurrentJobPane; |