summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--macosx/HBQueueController.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/macosx/HBQueueController.h b/macosx/HBQueueController.h
index 9ba7c2432..4e5b97508 100644
--- a/macosx/HBQueueController.h
+++ b/macosx/HBQueueController.h
@@ -164,8 +164,8 @@ BOOL fIsDragging;
NSMutableArray *fJobs; // array of HBJob
NSMutableAttributedString *fDescription;
BOOL fNeedsDescription;
- float fLastDescriptionHeight;
- float fLastDescriptionWidth;
+ CGFloat fLastDescriptionHeight;
+ CGFloat fLastDescriptionWidth;
HBQueueJobGroupStatus fStatus;
NSString *fPresetName;
}
@@ -191,8 +191,8 @@ BOOL fIsDragging;
// Creating a description
- (void) setNeedsDescription: (BOOL)flag;
- (NSMutableAttributedString *) attributedDescription;
-- (float) heightOfDescriptionForWidth:(float)width;
-- (float) lastDescriptionHeight;
+- (CGFloat) heightOfDescriptionForWidth:(CGFloat)width;
+- (CGFloat) lastDescriptionHeight;
@end