diff options
author | ritsuka <[email protected]> | 2014-12-27 10:48:12 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2014-12-27 10:48:12 +0000 |
commit | 11e8c42dca071c1f4536d939adbfdb13bbd6645a (patch) | |
tree | 145cd451bd32785e90556dc43a0e0177e1682fed | |
parent | df8b2ff3e109699e3dadd88404911f8dfc7b210a (diff) |
MacGui: remove unneeded init.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6656 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | macosx/HBVideoController.m | 4 | ||||
-rw-r--r-- | macosx/PictureController.m | 3 |
2 files changed, 0 insertions, 7 deletions
diff --git a/macosx/HBVideoController.m b/macosx/HBVideoController.m index 8819ac93e..fa0bb192e 100644 --- a/macosx/HBVideoController.m +++ b/macosx/HBVideoController.m @@ -62,10 +62,6 @@ static void *HBVideoControllerContext = &HBVideoControllerContext; self = [super initWithNibName:@"Video" bundle:nil]; if (self) { - // Use a single HBVideo instance for now, - // will use the HBJob one in the future. - _video = [[HBVideo alloc] init]; - // Observe the advanced tab pref shown/hided state. [[NSUserDefaultsController sharedUserDefaultsController] addObserver:self forKeyPath:@"values.HBShowAdvancedTab" diff --git a/macosx/PictureController.m b/macosx/PictureController.m index 7d65d5664..4edded132 100644 --- a/macosx/PictureController.m +++ b/macosx/PictureController.m @@ -45,9 +45,6 @@ static void *HBPictureControllerContext = &HBPictureControllerContext; { if (self = [super initWithWindowNibName:@"PictureSettings"]) { - _filters = [[HBFilters alloc] init]; - _picture = [[HBPicture alloc] init]; - // NSWindowController likes to lazily load its window. However since // this controller tries to set all sorts of outlets before the window // is displayed, we need it to load immediately. The correct way to do |