diff options
Diffstat (limited to 'macosx/HBQueueItem.m')
-rw-r--r-- | macosx/HBQueueItem.m | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/macosx/HBQueueItem.m b/macosx/HBQueueItem.m index e0806d7e7..959167731 100644 --- a/macosx/HBQueueItem.m +++ b/macosx/HBQueueItem.m @@ -11,8 +11,8 @@ @implementation HBQueueItem @synthesize job = _job; -@synthesize attributedDescription = _attributedDescription; @synthesize attributedTitleDescription = _attributedTitleDescription; +@synthesize attributedDescription = _attributedDescription; @synthesize uuid = _uuid; @@ -49,14 +49,6 @@ return _job.completeOutputURL; } -- (NSAttributedString *)attributedDescription -{ - if (_attributedDescription == nil) { - _attributedDescription = _job.attributedDescription; - } - return _attributedDescription; -} - - (NSAttributedString *)attributedTitleDescription { if (_attributedTitleDescription == nil) { @@ -65,6 +57,14 @@ return _attributedTitleDescription; } +- (NSAttributedString *)attributedDescription +{ + if (_attributedDescription == nil) { + _attributedDescription = _job.attributedDescription; + } + return _attributedDescription; +} + #pragma mark - NSSecureCoding + (BOOL)supportsSecureCoding |