File tree 2 files changed +18
-2
lines changed
2 files changed +18
-2
lines changed Original file line number Diff line number Diff line change
1
+ 2010-05-29 JMB Recent files update fix
2
+
3
+ Fixed a bug where an invalid entry was added to the recently opened files
4
+ list when importing a MobileDB or XML file.
5
+
6
+ 2010-05-27 #################### PortaBase 2.0rc1 ####################
7
+
8
+ 2010-05-27 JMB Japanese update, accelerator clash fix, dropped file fix
9
+
10
+ Updated the Japanese translation of the help file (fixing a few minor
11
+ issues with the UI translation and the English help file in the process).
12
+ Both "Preferences" and "Edit Enums" in the File menu were using the "E"
13
+ accelerator, switched the latter to use "N". Also accounted for the
14
+ possibility of dropping files which don't have the extension all in lower
15
+ case. Updated version numbers for the next release.
16
+
1
17
2010-05-25 JMB Fixed file creation bug, stale filter bug
2
18
3
19
Fixed a rather serious bug introduced by the support for read-only files,
Original file line number Diff line number Diff line change @@ -603,7 +603,7 @@ void PortaBase::createFile(ImportDialog::DataSource source,
603
603
else if (result == QMessageBox::Yes) {
604
604
encrypted = true ;
605
605
}
606
- if (QFile::exists (file ) && !QFile::remove (file )) {
606
+ if (QFile::exists (f ) && !QFile::remove (f )) {
607
607
QMessageBox::warning (this , qApp->applicationName (),
608
608
tr (" Unable to overwrite existing file" ));
609
609
}
@@ -642,7 +642,7 @@ void PortaBase::createFile(ImportDialog::DataSource source,
642
642
updateCaption ();
643
643
// if not saved now, file is empty without later save...bad
644
644
save ();
645
- mh->opened (file );
645
+ mh->opened (doc );
646
646
}
647
647
else {
648
648
delete db;
You can’t perform that action at this time.
0 commit comments