From 0ef59f62cc5b17a9cff85fba6250f618384b9091 Mon Sep 17 00:00:00 2001 From: Johannes Obermayr Date: Fri, 13 Feb 2015 21:09:11 +0100 Subject: [PATCH 1/2] Fix error: extra qualification 'UEFIFind::' on member 'guidToQString'. --- UEFIFind/uefifind.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UEFIFind/uefifind.h b/UEFIFind/uefifind.h index 4137f9b..69eee52 100644 --- a/UEFIFind/uefifind.h +++ b/UEFIFind/uefifind.h @@ -41,7 +41,7 @@ public: private: UINT8 findFileRecursive(const QModelIndex index, const QString & hexPattern, const UINT8 mode, QSet > & files); - QString UEFIFind::guidToQString(const UINT8* guid); + QString guidToQString(const UINT8* guid); FfsEngine* ffsEngine; TreeModel* model; From b2c7e81db233a700192e158f67dbdb859afe7720 Mon Sep 17 00:00:00 2001 From: Johannes Obermayr Date: Fri, 13 Feb 2015 21:19:02 +0100 Subject: [PATCH 2/2] ATM volumeFfsVersion isn't used. --- ffsengine.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ffsengine.cpp b/ffsengine.cpp index 98f65cc..3cb316e 100644 --- a/ffsengine.cpp +++ b/ffsengine.cpp @@ -776,12 +776,12 @@ UINT8 FfsEngine::parseVolume(const QByteArray & volume, QModelIndex & index, co // Check for volume structure to be known bool volumeIsUnknown = true; - UINT8 volumeFfsVersion = 0; + /*UINT8 volumeFfsVersion = 0;*/ // Check for FFS v2 volume if (FFSv2Volumes.contains(QByteArray::fromRawData((const char*)volumeHeader->FileSystemGuid.Data, sizeof(EFI_GUID)))) { volumeIsUnknown = false; - volumeFfsVersion = 2; + /*volumeFfsVersion = 2;*/ } // Check for FFS v3 volume