diff --git a/shared/shared.cpp b/shared/shared.cpp index d8525cc..d068f01 100644 --- a/shared/shared.cpp +++ b/shared/shared.cpp @@ -184,8 +184,6 @@ LddInfo findDependencyInfo(const QString &binaryPath) const auto match = regexp.match(outputLines.first()); if (match.hasMatch()) { info.installName = match.captured(1); - info.compatibilityVersion = QVersionNumber::fromString(match.captured(2)); - info.currentVersion = QVersionNumber::fromString(match.captured(3)); } else { LogError() << "Could not parse objdump output line:" << outputLines.first(); } diff --git a/shared/shared.h b/shared/shared.h index d81dd23..63311d1 100644 --- a/shared/shared.h +++ b/shared/shared.h @@ -33,7 +33,6 @@ #include #include #include -#include extern int logLevel; #define LogError() if (logLevel < 0) {} else qDebug() << "ERROR:" @@ -66,8 +65,6 @@ class DylibInfo { public: QString binaryPath; - QVersionNumber currentVersion; - QVersionNumber compatibilityVersion; }; class LddInfo @@ -75,8 +72,6 @@ class LddInfo public: QString installName; QString binaryPath; - QVersionNumber currentVersion; - QVersionNumber compatibilityVersion; QList dependencies; };