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/RootFolder.h')
-rwxr-xr-xCPP/7zip/UI/FileManager/RootFolder.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/CPP/7zip/UI/FileManager/RootFolder.h b/CPP/7zip/UI/FileManager/RootFolder.h
index 7dad969d..f17a0783 100755
--- a/CPP/7zip/UI/FileManager/RootFolder.h
+++ b/CPP/7zip/UI/FileManager/RootFolder.h
@@ -9,7 +9,9 @@
#include "FSFolder.h"
-class CRootFolder:
+const int kNumRootFolderItems = 3;
+
+class CRootFolder:
public IFolderFolder,
public IFolderGetSystemIconIndex,
public CMyUnknownImp
@@ -25,8 +27,8 @@ public:
void Init();
private:
- UString _computerName;
- UString _networkName;
+ UString _names[kNumRootFolderItems];
+ int _iconIndices[kNumRootFolderItems];
};
#endif