summaryrefslogtreecommitdiff
path: root/src/gipfel.cxx
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2008-07-05 21:33:56 +0200
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2008-07-05 21:33:56 +0200
commit21fa20047915ac3b75588f762eba92f21c8a32ad (patch)
tree870d1e2d0a445268d4a3e033c4c2aca47cfa1c53 /src/gipfel.cxx
parentf14d7c7bb083ae4f79eba4df066d41359dff7a26 (diff)
cleanup ImageMetaDate interface
Diffstat (limited to 'src/gipfel.cxx')
-rw-r--r--src/gipfel.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gipfel.cxx b/src/gipfel.cxx
index 7331b77..9409673 100644
--- a/src/gipfel.cxx
+++ b/src/gipfel.cxx
@@ -678,9 +678,9 @@ export_position() {
if (md.load_image(img_file) == 0) {
printf(",%s,,%f,%f,%d\n", img_file,
- md.get_latitude(),
- md.get_longitude(),
- (int) rint(md.get_height()));
+ md.latitude(),
+ md.longitude(),
+ (int) rint(md.height()));
return 0;
} else {