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/GUI/UpdateCallbackGUI.h')
-rw-r--r--CPP/7zip/UI/GUI/UpdateCallbackGUI.h24
1 files changed, 10 insertions, 14 deletions
diff --git a/CPP/7zip/UI/GUI/UpdateCallbackGUI.h b/CPP/7zip/UI/GUI/UpdateCallbackGUI.h
index 21b6f432..2e0c111b 100644
--- a/CPP/7zip/UI/GUI/UpdateCallbackGUI.h
+++ b/CPP/7zip/UI/GUI/UpdateCallbackGUI.h
@@ -5,34 +5,30 @@
#include "../Common/Update.h"
#include "../Common/ArchiveOpenCallback.h"
-#include "../FileManager/ProgressDialog2.h"
+
+#include "UpdateCallbackGUI2.h"
class CUpdateCallbackGUI:
public IOpenCallbackUI,
- public IUpdateCallbackUI2
+ public IUpdateCallbackUI2,
+ public CUpdateCallbackGUI2
{
public:
- bool PasswordIsDefined;
- UString Password;
+ // CUpdateCallbackGUI();
+ // ~CUpdateCallbackGUI();
+
bool AskPassword;
- bool PasswordWasAsked;
- UInt64 NumFiles;
+
+ void Init();
CUpdateCallbackGUI():
- PasswordIsDefined(false),
- PasswordWasAsked(false),
AskPassword(false)
{}
-
- ~CUpdateCallbackGUI();
- void Init();
INTERFACE_IUpdateCallbackUI2(;)
INTERFACE_IOpenCallbackUI(;)
- UStringVector FailedFiles;
-
- CProgressDialog *ProgressDialog;
+ FStringVector FailedFiles;
};
#endif