Changeset 7223


Ignore:
Timestamp:
03/25/12 19:05:07 (14 months ago)
Author:
cristy
Message:
 
Location:
ImageMagick/branches/ImageMagick-6/coders
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • ImageMagick/branches/ImageMagick-6/coders/pango.c

    r7181 r7223  
    6161#include "magick/string_.h" 
    6262#include "magick/string-private.h" 
     63#include "magick/token.h" 
    6364#include "magick/utility.h" 
    6465#if defined(MAGICKCORE_PANGOFT2_DELEGATE) 
     
    178179  option=GetImageOption(image_info,"filename"); 
    179180  if (option == (const char *) NULL) 
    180     property=InterpretImageProperties(image_info,image,image_info->filename, 
    181       exception); 
     181    property=InterpretImageProperties(image_info,image,image_info->filename); 
    182182  else 
    183183    if (LocaleNCompare(option,"pango:",6) == 0) 
    184       property=InterpretImageProperties(image_info,image,option+6,exception); 
     184      property=InterpretImageProperties(image_info,image,option+6); 
    185185    else 
    186       property=InterpretImageProperties(image_info,image,option,exception); 
    187   (void) SetImageProperty(image,"caption",property,exception); 
     186      property=InterpretImageProperties(image_info,image,option); 
     187  (void) SetImageProperty(image,"caption",property); 
    188188  property=DestroyString(property); 
    189   caption=ConstantString(GetImageProperty(image,"caption",exception)); 
     189  caption=ConstantString(GetImageProperty(image,"caption")); 
    190190  /* 
    191191    Get context. 
  • ImageMagick/branches/ImageMagick-6/coders/pdf.c

    r6851 r7223  
    7272#include "magick/string_.h" 
    7373#include "magick/module.h" 
     74#include "magick/token.h" 
    7475#include "magick/transform.h" 
    7576#include "magick/utility.h" 
Note: See TracChangeset for help on using the changeset viewer.