summaryrefslogtreecommitdiff
path: root/platform/ios/Classes/MuDocRef.m
AgeCommit message (Collapse)Author
2015-02-25iOS: conform to recent mupdf API changes.fredrossperry
2015-02-17Reference count fz_document.Tor Andersson
2014-10-04iOS: Fix an analyser warningJoseph Heenan
In MuDocRef initialise. it spotted cases where self could be released twice after a failure.
2014-07-03Fix memory leak in MuDocRef.m.Matt Holgate
Remember to release self, if we're returning nil from the initialiser. Also, there is no need for fz_var(doc), because doc is an ivar and effectively equivalent to 'self->doc'.
2014-07-03Don't crash if a document fails to open on iOS.Matt Holgate
Handle exceptions from fz_open_document().
2014-06-27iOS - Fix #695217 - don't allow annotation of encrypted PDFsMatt Holgate
2014-04-24iOS: remove the annotations button for non-interactive document typesPaul Gardiner
2014-03-26iOS: fix build and update to use mujsPaul Gardiner
2014-01-09Remove comment header blurb from ios files.Tor Andersson
2013-09-24iOS: use ObjC-level ref counting to control lifetime of fz_documentPaul Gardiner
With the latest version if iOS, timing changes were causing crashes during close down of a MuDocumentController. This change isolates us from those changes.