summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorritsuka <[email protected]>2015-01-10 08:32:25 +0000
committerritsuka <[email protected]>2015-01-10 08:32:25 +0000
commitf73b7d7470a468bb58938066eaa48e3d8cdc573f (patch)
tree45134cbcb8d66d6d82b12e3d7e8790c484f1a924
parentfa1864cee5ad56b704ca6db52427ecc399a7a0d7 (diff)
MacGui: fix the number of pass in the job queue description.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6717 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r--macosx/HBQueueController.mm2
-rw-r--r--macosx/HBViewValidation.h15
2 files changed, 1 insertions, 16 deletions
diff --git a/macosx/HBQueueController.mm b/macosx/HBQueueController.mm
index 205a6a5a2..3070aedbf 100644
--- a/macosx/HBQueueController.mm
+++ b/macosx/HBQueueController.mm
@@ -748,7 +748,7 @@
{
passesString = [passesString stringByAppendingString:@"1 Foreign Language Search Pass - "];
}
- if (job.video.twoPass == YES)
+ if (job.video.qualityType == 1 || job.video.twoPass == NO)
{
passesString = [passesString stringByAppendingString:@"1 Video Pass"];
}
diff --git a/macosx/HBViewValidation.h b/macosx/HBViewValidation.h
deleted file mode 100644
index 205c748fb..000000000
--- a/macosx/HBViewValidation.h
+++ /dev/null
@@ -1,15 +0,0 @@
-//
-// HBViewValidation.h
-// HandBrake
-//
-// Created by Damiano Galassi on 07/08/14.
-//
-//
-
-#import <Foundation/Foundation.h>
-
-@protocol HBViewValidation <NSObject>
-
-@property (nonatomic, readwrite, getter=isEnabled) BOOL enabled;
-
-@end