mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 10:52:53 +00:00
kfilemetadata: fix type copy-paste mistake in exiv2 extractor
I assume that it's a developer copy-paste mistake, it may not be but in any case that property did not match the data extracted Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
3f5660c534
commit
e58593bb05
1 changed files with 1 additions and 1 deletions
|
@ -179,7 +179,7 @@ void Exiv2Extractor::extract(ExtractionResult* result)
|
|||
add(result, data, Property::ImageOrientation, "Exif.Image.Orientation", QVariant::Int);
|
||||
add(result, data, Property::PhotoFlash, "Exif.Photo.Flash", QVariant::Int);
|
||||
add(result, data, Property::PhotoPixelXDimension, "Exif.Photo.PixelXDimension", QVariant::Int);
|
||||
add(result, data, Property::PhotoPixelXDimension, "Exif.Photo.PixelYDimension", QVariant::Int);
|
||||
add(result, data, Property::PhotoPixelYDimension, "Exif.Photo.PixelYDimension", QVariant::Int);
|
||||
add(result, data, Property::PhotoDateTimeOriginal, "Exif.Photo.DateTimeOriginal", QVariant::DateTime);
|
||||
add(result, data, Property::PhotoFocalLength, "Exif.Photo.FocalLength", QVariant::Double);
|
||||
add(result, data, Property::PhotoFocalLengthIn35mmFilm, "Exif.Photo.FocalLengthIn35mmFilm", QVariant::Double);
|
||||
|
|
Loading…
Add table
Reference in a new issue