Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'CPP/7zip/UI/FileManager/SystemPage.h')
-rw-r--r--[-rwxr-xr-x]CPP/7zip/UI/FileManager/SystemPage.h14
1 files changed, 9 insertions, 5 deletions
diff --git a/CPP/7zip/UI/FileManager/SystemPage.h b/CPP/7zip/UI/FileManager/SystemPage.h
index a4b4ab92..0bf6aae7 100755..100644
--- a/CPP/7zip/UI/FileManager/SystemPage.h
+++ b/CPP/7zip/UI/FileManager/SystemPage.h
@@ -3,9 +3,9 @@
#ifndef __SYSTEM_PAGE_H
#define __SYSTEM_PAGE_H
-#include "Windows/Control/ImageList.h"
-#include "Windows/Control/ListView.h"
-#include "Windows/Control/PropertyPage.h"
+#include "../../../Windows/Control/ImageList.h"
+#include "../../../Windows/Control/ListView.h"
+#include "../../../Windows/Control/PropertyPage.h"
#include "FilePlugins.h"
#include "RegistryAssociations.h"
@@ -40,7 +40,7 @@ struct CModifiedExtInfo: public NRegistryAssoc::CShellExtInfo
Other = true;
if (IsIt7Zip())
{
- Other7Zip = (iconPath.CompareNoCase(IconPath) != 0);
+ Other7Zip = !iconPath.IsEqualToNoCase(IconPath);
if (!Other7Zip)
{
State = kExtState_7Zip;
@@ -88,7 +88,11 @@ class CSystemPage: public NWindows::NControl::CPropertyPage
NWindows::NControl::CImageList _imageList;
NWindows::NControl::CListView _listView;
- const HKEY GetHKey(int group) const
+ const HKEY GetHKey(int
+ #if NUM_EXT_GROUPS != 1
+ group
+ #endif
+ ) const
{
#if NUM_EXT_GROUPS == 1
return HKEY_CLASSES_ROOT;