summaryrefslogtreecommitdiffstats
path: root/mainwindow.h
diff options
context:
space:
mode:
authortezeb <tezeb+github@outoftheblue.pl>2016-11-27 00:33:37 +0100
committertezeb <tezeb+github@outoftheblue.pl>2016-11-27 00:33:37 +0100
commit59044608722357037c64c59b329c2b7f0b3ccbda (patch)
treebe8f462428f9872f138c4748e5d9f15f8233b8de /mainwindow.h
parentf7a82295065527673e0e2bacea6143dd33850c91 (diff)
fix Panel and Pass timers
- make Panel timer non dyn-allocated, with fixed config and working(it was not) - add Pass timer as member, with fixed config
Diffstat (limited to 'mainwindow.h')
-rw-r--r--mainwindow.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/mainwindow.h b/mainwindow.h
index 8af4ceb8..afd30c15 100644
--- a/mainwindow.h
+++ b/mainwindow.h
@@ -110,6 +110,7 @@ private slots:
void processError(QProcess::ProcessError);
void clearClipboard();
void clearPanel(bool notify);
+ void clearPanel();
void on_lineEdit_textChanged(const QString &arg1);
void on_lineEdit_returnPressed();
void on_addButton_clicked();
@@ -144,8 +145,8 @@ private:
QTreeView *treeView;
QProcess fusedav;
QString clippedText;
- QString autoclearPass;
- QTimer *autoclearTimer;
+ QTimer clearPanelTimer;
+ QTimer clearClipboardTimer;
actionType currentAction;
QString lastDecrypt;
QQueue<execQueueItem> *execQueue;