From 0ed79a92a5bd84ecdea3c26880d8ea547c262486 Mon Sep 17 00:00:00 2001 From: georgemoralis Date: Thu, 29 Feb 2024 12:39:05 +0200 Subject: [PATCH] uppercase fix --- src/qt_gui/main_window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt_gui/main_window.cpp b/src/qt_gui/main_window.cpp index 9311b156..c21ad697 100644 --- a/src/qt_gui/main_window.cpp +++ b/src/qt_gui/main_window.cpp @@ -280,7 +280,7 @@ void MainWindow::InstallPkg() { void MainWindow::InstallDragDropPkg(std::string file, int pkgNum, int nPkg) { - if (detectFileType(file) == FILETYPE_PKG) { + if (DetectFileType(file) == FILETYPE_PKG) { PKG pkg; pkg.Open(file); std::string failreason;