summaryrefslogtreecommitdiffstats
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index c1eddacd..e685c0f1 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -1007,7 +1007,7 @@ void MainWindow::editPassword(const QString &file) {
}
/**
- * @brief MainWindow::renamePassword rename or move an existing password
+ * @brief MainWindow::renamePassword rename an existing password
*/
void MainWindow::renamePassword() {
bool ok;
@@ -1021,11 +1021,9 @@ void MainWindow::renamePassword() {
&ok);
if (!ok || newName.isEmpty())
return;
- qDebug() << fileName;
- qDebug() << newName;
QString newFile = file;
newFile.replace(file.lastIndexOf(fileName), fileName.length(), newName);
- qDebug() << newFile;
+ newFile.replace(QRegExp("\\.gpg$"), "");
QtPassSettings::getPass()->Move(file, newFile);
}