summaryrefslogtreecommitdiffstats
path: root/installerbuilder/libinstaller/3rdparty/p7zip_9.04/unix/CPP/7zip/UI/FileManager/ListViewDialog.h
diff options
context:
space:
mode:
authortjenssen <tim.jenssen@nokia.com>2012-03-13 13:38:26 +0100
committerKarsten Heimrich <karsten.heimrich@nokia.com>2012-03-13 17:35:19 +0100
commitfea754a77e599328c0a7d0801792ae1b5bc155fc (patch)
tree74d1b6fe4c43ca93e71585ea0719ec0e342ea90b /installerbuilder/libinstaller/3rdparty/p7zip_9.04/unix/CPP/7zip/UI/FileManager/ListViewDialog.h
parentc1da312f182ad1b81a1f0ce627e4f9b3eddbf92b (diff)
remove old 7zip version
Change-Id: I8fa14b3132599ddd164633ad932eff4ef7734c74 Reviewed-by: Karsten Heimrich <karsten.heimrich@nokia.com>
Diffstat (limited to 'installerbuilder/libinstaller/3rdparty/p7zip_9.04/unix/CPP/7zip/UI/FileManager/ListViewDialog.h')
-rw-r--r--installerbuilder/libinstaller/3rdparty/p7zip_9.04/unix/CPP/7zip/UI/FileManager/ListViewDialog.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/installerbuilder/libinstaller/3rdparty/p7zip_9.04/unix/CPP/7zip/UI/FileManager/ListViewDialog.h b/installerbuilder/libinstaller/3rdparty/p7zip_9.04/unix/CPP/7zip/UI/FileManager/ListViewDialog.h
deleted file mode 100644
index f27b81697..000000000
--- a/installerbuilder/libinstaller/3rdparty/p7zip_9.04/unix/CPP/7zip/UI/FileManager/ListViewDialog.h
+++ /dev/null
@@ -1,32 +0,0 @@
-// ListViewDialog.h
-
-#ifndef __LISTVIEWDIALOG_H
-#define __LISTVIEWDIALOG_H
-
-#include "Windows/Control/Dialog.h"
-#include "Windows/Control/ListView.h"
-#include "ListViewDialogRes.h"
-
-class CListViewDialog: public NWindows::NControl::CModalDialog
-{
- NWindows::NControl::CListView _listView;
- virtual void OnOK();
- virtual bool OnInit();
-#ifdef _WIN32 // FIXME
- virtual bool OnNotify(UINT controlID, LPNMHDR header);
-#endif
-
-public:
- UString Title;
- bool DeleteIsAllowed;
- UStringVector Strings;
- bool StringsWereChanged;
- int FocusedItemIndex;
-
- INT_PTR Create(HWND wndParent = 0) { return CModalDialog::Create(IDD_DIALOG_LISTVIEW, wndParent); }
-
- CListViewDialog(): DeleteIsAllowed(false) {}
-
-};
-
-#endif