From 183cb4825ca59602b15aaee0a17e24705778108d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20T=C5=AFma?= Date: Mon, 8 Aug 2022 10:11:19 +0200 Subject: [PATCH] Fixed cut&paste errors --- src/map/oruxmap.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/map/oruxmap.cpp b/src/map/oruxmap.cpp index 1ada1bee..8550d5e8 100644 --- a/src/map/oruxmap.cpp +++ b/src/map/oruxmap.cpp @@ -75,7 +75,7 @@ static PointD corner2point(const QString &name, const QSize &size) return PointD(); } -static Projection::Setup polyconic2setup(const QStringList &list) +static Projection::Setup lcc2setup(const QStringList &list) { double params[6]; bool ok; @@ -92,7 +92,7 @@ static Projection::Setup polyconic2setup(const QStringList &list) params[5], params[2], params[3]); } -static Projection::Setup llc2setup(const QStringList &list) +static Projection::Setup polyconic2setup(const QStringList &list) { double params[3]; bool ok; @@ -155,7 +155,7 @@ static Projection createProjection(const GCS &gcs, const QString &name) else if (pl.first() == "Transverse Mercator") pcs = PCS(gcs, 9807, tm2setup(pl), 9001); else if (pl.first() == "Lambert Conformal Conic") - pcs = PCS(gcs, 9802, llc2setup(pl), 9001); + pcs = PCS(gcs, 9802, lcc2setup(pl), 9001); else if (pl.first() == "Polyconic (American)") pcs = PCS(gcs, 9818, polyconic2setup(pl), 9001); else if (pl.first() == "(NZTM2) New Zealand TM 2000")