HI Aaron,
Your latest checkin causes abi to segfault on startup.
>From gdb the segfault is line 3795.
130x8094a35 in main (argc=1, argv=0xbffff7c4) at UnixMain.cpp:24
(gdb)
(gdb) list
3790
pLayout->m_vecSquiggles.deleteNthItem(j-1);
3791 delete pPOB;
3792 }
3793 // Make sure there's no pending word. This
was put in to fix bug #900
3794 pLayout->m_pLayout->setPendingWord(NULL,
NULL);
3795 pLayout->m_pLayout->getView()->draw(NULL);
3796 }
3797 pLayout->m_bCheckInteractively =
bCheckInteractively;
3798 }
37
Then a bit more info gives:
gdb) print pLayout
$1 = (fl_BlockLayout *) 0x834c130
(gdb) print pLayout->m_pLayout
$2 = (FL_DocLayout *) 0x834b9d0
(gdb) print pLayout->m_pLayout->getView()
Cannot resolve method FL_DocLayout::getView to any overloaded instance
(gdb)
Needless to say this needs to be fixed ASAP.
Cheers
Martin