diff options
author | ritsuka <[email protected]> | 2014-07-16 06:20:57 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2014-07-16 06:20:57 +0000 |
commit | 0e165d0a096d606b52b1bcace1911c7d0c24be04 (patch) | |
tree | e2d54585d8518d8c69dd77335db0d78d1075c26b /macosx/HBPreviewController.m | |
parent | 31283b442713147dc5edb5135cb6dbcbb95635e8 (diff) |
MacGui: moved two methods used by the whole app to HBUtilities.m:
- appSupportPath:
- writeToActivityLog:
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6232 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBPreviewController.m')
-rw-r--r-- | macosx/HBPreviewController.m | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/macosx/HBPreviewController.m b/macosx/HBPreviewController.m index 76d756a0f..d13254ddc 100644 --- a/macosx/HBPreviewController.m +++ b/macosx/HBPreviewController.m @@ -6,6 +6,7 @@ #import "HBPreviewController.h" #import "HBPreviewGenerator.h" +#import "HBUtilities.h" #import "Controller.h" #import <QTKit/QTKit.h> @@ -821,7 +822,7 @@ typedef enum ViewMode : NSUInteger { if (!movie) { - [self.delegate writeToActivityLog: "showMoviePreview: Unable to open movie"]; + [HBUtilities writeToActivityLog: "showMoviePreview: Unable to open movie"]; [self switchViewToMode:ViewModePicturePreview]; } else |