summaryrefslogtreecommitdiff
path: root/src/gipfel.cxx
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2005-09-04 12:09:18 +0200
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2005-09-04 12:09:18 +0200
commit700f8cb97bc9a033b82252e0120e41962135fb06 (patch)
treeb50f01b9d28774565dcbdcf6311745f5233a4230 /src/gipfel.cxx
parent00122d6ce67e9500775d2ba6d80233b1300964b6 (diff)
make Projection_t part of Projection class
Diffstat (limited to 'src/gipfel.cxx')
-rw-r--r--src/gipfel.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gipfel.cxx b/src/gipfel.cxx
index 37eaaf4..e63fd86 100644
--- a/src/gipfel.cxx
+++ b/src/gipfel.cxx
@@ -142,9 +142,9 @@ void viewpoint_cb(Fl_Value_Input* o, void*) {
void proj_cb(Fl_Value_Input* o, void*d) {
if(d == NULL) {
- gipf->set_projection(PROJECTION_TANGENTIAL);
+ gipf->set_projection(Projection::TANGENTIAL);
} else {
- gipf->set_projection(PROJECTION_SPHAERIC);
+ gipf->set_projection(Projection::SPHAERIC);
}
}