summaryrefslogtreecommitdiffstats
path: root/mainwindow.cpp
diff options
context:
space:
mode:
authorAnne Jan Brouwer <brouwer@annejan.com>2015-07-07 01:11:52 +0200
committerAnne Jan Brouwer <brouwer@annejan.com>2015-07-07 01:11:52 +0200
commit28af9a55c39e44305b7f6234d83597ad75ea6775 (patch)
tree15992491a7fef5b476e3ffe4e23079c7714a6923 /mainwindow.cpp
parentb13216157165c801ba493588df0a409178db9519 (diff)
cleanup
Diffstat (limited to 'mainwindow.cpp')
-rw-r--r--mainwindow.cpp19
1 files changed, 2 insertions, 17 deletions
diff --git a/mainwindow.cpp b/mainwindow.cpp
index d9afc336..31dd48cf 100644
--- a/mainwindow.cpp
+++ b/mainwindow.cpp
@@ -941,21 +941,6 @@ void MainWindow::on_editButton_clicked()
}
/**
- * @brief MainWindow::qSleep
- * @param ms
- */\
-void MainWindow::qSleep(int ms)
-{
-#ifdef Q_OS_WIN
- Sleep(uint(ms));
-#else
- struct timespec ts = { ms / 1000, (ms % 1000) * 1000 * 1000 };
- nanosleep(&ts, NULL);
-#endif
-}
-
-
-/**
* @brief MainWindow::listKeys
* @param keystring
* @param secret
@@ -964,7 +949,7 @@ void MainWindow::qSleep(int ms)
QList<UserInfo> MainWindow::listKeys(QString keystring, bool secret)
{
while (!process->atEnd() || !execQueue->isEmpty()) {
- qSleep(100);
+ Util::qSleep(100);
}
QList<UserInfo> users;
currentAction = GPG_INTERNAL;
@@ -1359,7 +1344,7 @@ void MainWindow::addFolder()
void MainWindow::editPassword()
{
while (!process->atEnd() || !execQueue->isEmpty()) {
- qSleep(100);
+ Util::qSleep(100);
}
// TODO move to editbutton stuff possibly?
currentDir = getDir(ui->treeView->currentIndex(), false);