https://bz.apache.org/bugzilla/show_bug.cgi?id=59742

Jens Popp <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 OS|                            |All

--- Comment #1 from Jens Popp <[email protected]> ---
Just adding 

    @Override
    public PictureType getType() {
...
        } else if (XSLFRelation.IMAGE_TIFF.getContentType().equals(ct)) {
            return PictureType.TIFF;
        } else {
            return null;
        }
    }

and

    /* package */ static XSLFRelation getRelationForType(PictureType pt) {
        switch (pt) {
            case EMF:
...
            case TIFF:
                return XSLFRelation.IMAGE_TIFF;
            default:
                return null;
        }
    }

Solves the problem

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to