File tree Expand file tree Collapse file tree 4 files changed +9
-6
lines changed
Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 1+ 1.6.8
2+ + Fixed saving in txt format (thanks algri14)
3+
141.6.7
25+ Added Italian translation (thanks GvMariani)
36
Original file line number Diff line number Diff 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
6666DISTFILES += \
6767 duplicatesfinder.rc
Original file line number Diff line number Diff line change 22
33Summary: Duplicates Finder
44Name: duplicatesfinder
5- Version: 1.6.7
5+ Version: 1.6.8
66Release: 1
77License: LGPL2.1
88Group: File tools
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments