Skip to content

Commit

Permalink
Placeholder related: #161
Browse files Browse the repository at this point in the history
  • Loading branch information
annejan committed Jun 10, 2016
1 parent 7e09ea9 commit 9b79a16
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
13 changes: 9 additions & 4 deletions mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1431,10 +1431,7 @@ void MainWindow::on_usersButton_clicked() {
tr("None of the selected keys have a secret key available.\n"
"You will not be able to decrypt any newly added passwords!"));
}
QMessageBox::information(
this, tr("Recursing not yet implemented!"),
tr("This is an issue that only happens when you are not using pass.\n"
"Some people might not correctly be encrypted for!"));

if (!useWebDav && useGit && !gitExecutable.isEmpty()) {
if (addFile)
executeWrapper(gitExecutable, "add \"" + gpgIdFile + '"');
Expand Down Expand Up @@ -1884,3 +1881,11 @@ void MainWindow::setClippedPassword(const QString &pass) {
}

const QString &MainWindow::getClippedPassword() { return clippedPass; }

void MainWindow::reencryptPath(QString dir) {
QMessageBox::information(
this, tr("Recursing not yet implemented!"),
tr("This is an issue that only happens when you are not using pass.\n"
"Some people might not correctly be encrypted for %1!").arg(dir));
}

1 change: 1 addition & 0 deletions mainwindow.h
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ private slots:
void clearTemplateWidgets();
void setClippedPassword(const QString &pass);
const QString &getClippedPassword();
void reencryptPath(QString dir);
};

#endif // MAINWINDOW_H_

0 comments on commit 9b79a16

Please sign in to comment.