~ubuntu-branches/ubuntu/karmic/libimage-exiftool-perl/karmic

« back to all changes in this revision

Viewing changes to lib/Image/ExifTool/Fixup.pm

  • Committer: Bazaar Package Importer
  • Author(s): Mari Wang
  • Date: 2008-02-04 20:32:53 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20080204203253-mpbal8trlfe1fz5d
Tags: 7.00-1
* Upload of new production release (Closes: #456430)
* Added Recommends: libcompress-zlib-perl (Closes: #435589)
* Package now includes iptc2xmp.args and xmp2iptc.args, they are put
  into /usr/share/libimage-exiftool/ (Closes: #436100)
* Updated standards-version (3.7.2 -> 3.7.3). No changes needed.
* Lots of updates and bugfixes compared to last debian version
  (6.90).  See the Changes file for details
* Upload sponsored by Petter Reinholdtsen

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
                       Get16u Get16s Set16u);
27
27
use vars qw($VERSION);
28
28
 
29
 
$VERSION = '1.03';
 
29
$VERSION = '1.04';
30
30
 
31
31
sub AddFixup($$;$$);
32
32
sub ApplyFixup($$);
176
176
    my ($self, $marker) = @_;
177
177
    my $phash = $self->{Pointers};
178
178
    return 0 unless $phash;
179
 
    return 1 if grep /^_$marker$/, keys %$phash;
 
179
    return 1 if grep /_$marker$/, keys %$phash;
180
180
    return 0 unless $self->{Fixups};
181
181
    my $subFixup;
182
182
    foreach $subFixup (@{$self->{Fixups}}) {