From 319f1180f14563dca1a3d51ef46a8671b20a129c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20T=C5=AFma?= Date: Thu, 17 Jun 2021 22:13:31 +0200 Subject: [PATCH] Cosmetics --- src/map/worldfilemap.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/map/worldfilemap.cpp b/src/map/worldfilemap.cpp index 53b83d98..8f517d0d 100644 --- a/src/map/worldfilemap.cpp +++ b/src/map/worldfilemap.cpp @@ -18,7 +18,7 @@ WorldFileMap::WorldFileMap(const QString &fileName, const Projection &proj, QString basename(fi.baseName()); - // Get transformation from the WLD file + // Get the transformation from the WLD file WLDFile wld(fileName); if (wld.transform().isValid()) _transform = wld.transform(); @@ -27,7 +27,7 @@ WorldFileMap::WorldFileMap(const QString &fileName, const Projection &proj, return; } - // Set the projection from PRJ file if any + // Get the projection from the corresponding PRJ file (if any) QString prjFile(basename + ".prj"); if (dir.exists(prjFile)) { PRJFile prj(dir.filePath(prjFile));