Skip to content

Commit c118ad5

Browse files
authored
fix to save txt
1 parent 1ed8144 commit c118ad5

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

changelog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
1.6.8
2+
+ Fixed saving in txt format (thanks algri14)
3+
14
1.6.7
25
+ Added Italian translation (thanks GvMariani)
36

duplicatesfinder.pro

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@ RESOURCES += \
5656
res.qrc
5757

5858

59-
VERSION_PE_HEADER = 1.6.7
59+
VERSION_PE_HEADER = 1.6.8
6060

61-
win32:VERSION = 1.6.7 # major.minor.patch.build
62-
else:VERSION = 1.6.7 # major.minor.patch
61+
win32:VERSION = 1.6.8 # major.minor.patch.build
62+
else:VERSION = 1.6.8 # major.minor.patch
6363

64-
DEFINES += APP_VERSION='"\\\"1.6.7\\\""'
64+
DEFINES += APP_VERSION='"\\\"1.6.8\\\""'
6565

6666
DISTFILES += \
6767
duplicatesfinder.rc

duplicatesfinder.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Summary: Duplicates Finder
44
Name: duplicatesfinder
5-
Version: 1.6.7
5+
Version: 1.6.8
66
Release: 1
77
License: LGPL2.1
88
Group: File tools

mainwindow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ void MainWindow::on_actionSave_duplicate_list_triggered()
408408
for(int i = 0;i<ui->tableWidget->rowCount();i++){
409409
for(int x = 1; x < ui->tableWidget->columnCount() - 1;x++){
410410
if(filter == tr("Text csv (*.csv)")) stream << ui->tableWidget->item(i,x)->text() << " ;\t ";
411-
if(filter == tr("Text file (*.txt)")) stream << ui->tableWidget->item(i,x)->text() << " \t ";
411+
else stream << ui->tableWidget->item(i,x)->text() << " \t ";
412412
}
413413
stream << "\r\n";
414414
}

0 commit comments

Comments
 (0)