Summary: | Galactic/Equatorial coordinates conversion does not work | ||
---|---|---|---|
Product: | [Applications] kstars | Reporter: | R. Kortekaas <r.kortekaas> |
Component: | general | Assignee: | kstars |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
R. Kortekaas
2007-08-27 13:30:53 UTC
SVN commit 705228 by harris: Fixing bug #149261. I don't know if there will be another 3.5 release, but if you have the source code, you can fix this very easily: Open the file kdeedu/kstars/kstars/tools/astrocalc.cpp. Search for the word "Cooordinates" and change it to "Coordinates". This issue doesn't exist in trunk. BUG: 149261 M +1 -1 astrocalc.cpp --- branches/KDE/3.5/kdeedu/kstars/kstars/tools/astrocalc.cpp #705227:705228 @@ -115,7 +115,7 @@ genCoordText(); if(!(election.compare(i18n("Julian Day")))) genJdFrame(); - if(!(election.compare(i18n("Galactic Cooordinates")))) + if(!(election.compare(i18n("Galactic Coordinates")))) genGalFrame(); if(!(election.compare(i18n("Precession")))) genPrecFrame(); Thanks very much for the prompt reply and diagnosis!
I shall have a go at the suggested edit.
Rudie
>Fixing bug #149261.
>
> I don't know if there will be another 3.5 release, but
>if you have the
> source code, you can fix this very easily:
>
> Open the file kdeedu/kstars/kstars/tools/astrocalc.cpp.
>
> Search for the word "Cooordinates" and change it to
>"Coordinates".
>
> This issue doesn't exist in trunk.
>
> BUG: 149261
>
>
>
> M +1 -1 astrocalc.cpp
>
>
> ---
>branches/KDE/3.5/kdeedu/kstars/kstars/tools/astrocalc.cpp
>#705227:705228
> @ -115,7 +115,7 @
> genCoordText();
> if(!(election.compare(i18n("Julian Day"))))
> genJdFrame();
> - if(!(election.compare(i18n("Galactic Cooordinates"))))
> + if(!(election.compare(i18n("Galactic Coordinates"))))
> genGalFrame();
> if(!(election.compare(i18n("Precession"))))
> genPrecFrame();
|