aboutsummaryrefslogtreecommitdiffstats
path: root/src/m_ver_check/SoftwareVersion.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/m_ver_check/SoftwareVersion.cpp')
-rw-r--r--src/m_ver_check/SoftwareVersion.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/m_ver_check/SoftwareVersion.cpp b/src/m_ver_check/SoftwareVersion.cpp
index c6dbf6e..b868af1 100644
--- a/src/m_ver_check/SoftwareVersion.cpp
+++ b/src/m_ver_check/SoftwareVersion.cpp
@@ -39,13 +39,6 @@
#include "GFModuleCommonUtils.hpp"
auto SoftwareVersion::NeedUpgrade() const -> bool {
- MLogDebug(QString("compare version current: %1 latest %2, result: %3")
- .arg(current_version)
- .arg(latest_version)
- .arg(GFCompareSoftwareVersion(
- GFModuleStrDup(current_version.toUtf8()),
- GFModuleStrDup(latest_version.toUtf8()))));
-
return !latest_version.isEmpty() &&
GFCompareSoftwareVersion(GFModuleStrDup(current_version.toUtf8()),
GFModuleStrDup(latest_version.toUtf8())) < 0;