Mercurial > geeqie.yaz
changeset 1056:5a5784eb61df
Fixed degree symbol encoding
author | nadvornik |
---|---|
date | Tue, 07 Oct 2008 18:22:58 +0000 |
parents | 1646720364cf |
children | c28eb027dd5b |
files | src/exif-common.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/exif-common.c Tue Oct 07 18:20:22 2008 +0000 +++ b/src/exif-common.c Tue Oct 07 18:22:58 2008 +0000 @@ -456,7 +456,7 @@ p2 = (gint)((p - p1)*60); p3 = ((p - p1)*60 - p2)*60; - g_string_append_printf(string, "%0d° %0d' %0.2f\" %.1s", p1, p2, p3, ref); + g_string_append_printf(string, "%0d° %0d' %0.2f\" %.1s", p1, p2, p3, ref); } // if (item && ref) item = exif_get_item(exif, "Exif.GPSInfo.GPSLongitude"); @@ -474,7 +474,7 @@ p2 = (gint)((p - p1)*60); p3 = ((p - p1)*60 - p2)*60; - g_string_append_printf(string, ", %0d° %0d' %0.2f\" %.1s", p1, p2, p3, ref); + g_string_append_printf(string, ", %0d° %0d' %0.2f\" %.1s", p1, p2, p3, ref); } // if (item && ref) text = string->str;