summaryrefslogtreecommitdiffstats
path: root/macosx/HBChapterTitlesController.m
diff options
context:
space:
mode:
authorritsuka <[email protected]>2014-12-20 10:53:48 +0000
committerritsuka <[email protected]>2014-12-20 10:53:48 +0000
commit5b28087941896fe23c3c66774e246a78f714781f (patch)
treee0b3c1400ee3690a0c1d2eac99f3b660aa972431 /macosx/HBChapterTitlesController.m
parent27c5b2f23ce5f6c2a0de427f958e23e92bb20107 (diff)
MacGui: use title->list_chapter directly instead of title->job->list_chapter.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6619 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBChapterTitlesController.m')
-rw-r--r--macosx/HBChapterTitlesController.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/HBChapterTitlesController.m b/macosx/HBChapterTitlesController.m
index 40adb36c9..e029b7244 100644
--- a/macosx/HBChapterTitlesController.m
+++ b/macosx/HBChapterTitlesController.m
@@ -54,9 +54,9 @@
if (title)
{
- for (int i = 0; i < hb_list_count(title->job->list_chapter); i++)
+ for (int i = 0; i < hb_list_count(title->list_chapter); i++)
{
- hb_chapter_t *chapter = hb_list_item(title->job->list_chapter, i);
+ hb_chapter_t *chapter = hb_list_item(title->list_chapter, i);
if (chapter != NULL)
{
if (chapter->title != NULL)