From 9592da40c4984c2ae4b6f7027e48d69a14d633c8 Mon Sep 17 00:00:00 2001 From: Manuel Guidon <33161876+mguidon@users.noreply.github.com> Date: Mon, 16 May 2022 15:48:50 +0200 Subject: [PATCH] Its *.prj not *.proj (#129) --- iSeg/MainWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iSeg/MainWindow.cpp b/iSeg/MainWindow.cpp index a486b0b..671302c 100644 --- a/iSeg/MainWindow.cpp +++ b/iSeg/MainWindow.cpp @@ -3131,7 +3131,7 @@ void MainWindow::LoadAny(const QString& loadfilename) // Deduce the importer from the file-ending const auto extension = boost::filesystem::extension(file_path); - static const std::string proj_extenstion = ".proj"; + static const std::string proj_extenstion = ".prj"; static const std::string s4l_extenstion = ".h5"; static const std::vector medical_image_extensions = {".mhd", ".mha", ".nii", ".hdr", ".img", ".gz"}; static const std::vector vtk_extensions = {".vtk", ".vki"};