comparison src/exiv2.cc @ 1422:91bed0d66cf2

gint -> gboolean and tidy up.
author zas_
date Thu, 12 Mar 2009 22:35:45 +0000
parents 10073464e6aa
children cd88fe4e5588
comparison
equal deleted inserted replaced
1421:130054d9dd8a 1422:91bed0d66cf2
667 std::cout << "Caught Exiv2 exception '" << e << "'\n"; 667 std::cout << "Caught Exiv2 exception '" << e << "'\n";
668 return EXIF_FORMAT_UNKNOWN; 668 return EXIF_FORMAT_UNKNOWN;
669 } 669 }
670 } 670 }
671 671
672 const char *exif_item_get_format_name(ExifItem *item, gint brief) 672 const char *exif_item_get_format_name(ExifItem *item, gboolean brief)
673 { 673 {
674 try { 674 try {
675 if (!item) return NULL; 675 if (!item) return NULL;
676 return ((Exiv2::Metadatum *)item)->typeName(); 676 return ((Exiv2::Metadatum *)item)->typeName();
677 } 677 }