SVN commit 1170135 by staniek: Core *Clarify error message: when non-kexi SQLite file is opened, display "Database project '...' does not appear to have been created using Kexi and cannot be opened. It is an SQLite file created using other tools." M +5 -1 core/kexiproject.cpp M +4 -0 doc/dev/CHANGELOG-Kexi-js --- trunk/koffice/kexi/core/kexiproject.cpp #1170134:1170135 @@ -216,8 +216,12 @@ // if (incompatibleWithKexi) *incompatibleWithKexi = true; - } else + } else { + KexiDB::MessageTitle et(this, + i18n("Database project %1 does not appear to have been created using Kexi and cannot be opened." + "

It is an SQLite file created using other tools.", d->data->infoString())); setError(d->connection); + } closeConnection(); return false; } --- trunk/koffice/kexi/doc/dev/CHANGELOG-Kexi-js #1170134:1170135 @@ -109,6 +109,10 @@ , fieldsExpandedWithInternal(0) + //, orderByColumnList(copy->orderByColumnList) +2010-08-30 +Core +*Clarify error message: when non-kexi SQLite file is opened, display "Database project '...' does not appear to have been created using Kexi and cannot be opened. It is an SQLite file created using other tools." + 2010-08-29 CSV Export Dialog *fix layout of the CSV Export dialog