summaryrefslogtreecommitdiffstats
path: root/tksao/frame/base.C
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2017-08-07 18:12:09 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2017-08-07 18:12:09 (GMT)
commitac5f936afba9b8aca203ad64d4676821464e78dc (patch)
treee98f8aedd4787f3d593af68e16d18183f2ad6f6b /tksao/frame/base.C
parent67a7da96005ebc219d94a532d6cfcc5e70cb55b8 (diff)
downloadblt-ac5f936afba9b8aca203ad64d4676821464e78dc.zip
blt-ac5f936afba9b8aca203ad64d4676821464e78dc.tar.gz
blt-ac5f936afba9b8aca203ad64d4676821464e78dc.tar.bz2
clean up code
Diffstat (limited to 'tksao/frame/base.C')
-rw-r--r--tksao/frame/base.C8
1 files changed, 4 insertions, 4 deletions
diff --git a/tksao/frame/base.C b/tksao/frame/base.C
index 527c888..76973ae 100644
--- a/tksao/frame/base.C
+++ b/tksao/frame/base.C
@@ -1161,7 +1161,7 @@ void Base::printSkyFormat(Coord::SkyFormat format)
Tcl_AppendResult(interp, coord.skyFormatStr(format), NULL);
}
-void Base::printSkyDist(Coord::SkyDist dist)
+void Base::printDistFormat(Coord::DistFormat dist)
{
Tcl_AppendResult(interp, coord.skyDistStr(dist), NULL);
}
@@ -1177,7 +1177,7 @@ void Base::printFromRef(FitsImage* ptr, const Vector& vv,
}
void Base::printLenFromRef(FitsImage* ptr, double dd,
- Coord::CoordSystem sys, Coord::SkyDist dist)
+ Coord::CoordSystem sys, Coord::DistFormat dist)
{
ostringstream str;
ptr->listLenFromRef(str, dd, sys, dist);
@@ -1186,7 +1186,7 @@ void Base::printLenFromRef(FitsImage* ptr, double dd,
}
void Base::printLenFromRef(FitsImage* ptr, const Vector& vv,
- Coord::CoordSystem sys, Coord::SkyDist dist)
+ Coord::CoordSystem sys, Coord::DistFormat dist)
{
ostringstream str;
ptr->listLenFromRef(str, vv, sys, dist);
@@ -1196,7 +1196,7 @@ void Base::printLenFromRef(FitsImage* ptr, const Vector& vv,
void Base::printDistFromRef(FitsImage* ptr,
const Vector& vv1, const Vector& vv2,
- Coord::CoordSystem sys, Coord::SkyDist dist)
+ Coord::CoordSystem sys, Coord::DistFormat dist)
{
ostringstream str;
ptr->listDistFromRef(str, vv1, vv2, sys, dist);