aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-archiver/MainUI.h
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-06-07 07:22:51 -0400
committerKen Moore <ken@ixsystems.com>2017-06-07 07:22:51 -0400
commit3e2450652b35f1461ebf3c652f2173b778ace05e (patch)
tree5e10a32aee8ba6786fd2b4c1f60438c99874f032 /src-qt5/desktop-utils/lumina-archiver/MainUI.h
parentFix up the x11/lumina-core plist to account for the new archive icons. (diff)
downloadlumina-3e2450652b35f1461ebf3c652f2173b778ace05e.tar.gz
lumina-3e2450652b35f1461ebf3c652f2173b778ace05e.tar.bz2
lumina-3e2450652b35f1461ebf3c652f2173b778ace05e.zip
Get the auto-extract functionality cleaned up with the signal/slots a bit.
Diffstat (limited to 'src-qt5/desktop-utils/lumina-archiver/MainUI.h')
-rw-r--r--src-qt5/desktop-utils/lumina-archiver/MainUI.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src-qt5/desktop-utils/lumina-archiver/MainUI.h b/src-qt5/desktop-utils/lumina-archiver/MainUI.h
index e37ae1cb..61475fb2 100644
--- a/src-qt5/desktop-utils/lumina-archiver/MainUI.h
+++ b/src-qt5/desktop-utils/lumina-archiver/MainUI.h
@@ -25,11 +25,12 @@ public:
void LoadArguments(QStringList);
void loadIcons();
- //QString newdir, dir;
+
private:
Ui::MainUI *ui;
Backend *BACKEND;
+ bool auto_extract_close;
QTreeWidgetItem* findItem(QString path, QTreeWidgetItem *start = 0);
bool cleanItems(QStringList list, QTreeWidgetItem *start = 0); //returns true if anything gets cleaned
bgstack15