summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-14 21:37:51 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-14 21:37:51 +0000
commit416b853408b60dd208378f0b1d745ad30684cac4 (patch)
tree8710d1b17579782abb5d20963b275ed93db7624e
parent902ba103f2215bcefa22d62b1c9138aa4b88891c (diff)
downloadkmymoney-416b8534.tar.gz
kmymoney-416b8534.zip
Convert accidental instances of STQL to the proper SQL
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kmymoney@1247182 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rw-r--r--kmymoney2/dialogs/kselectdatabasedlg.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kmymoney2/dialogs/kselectdatabasedlg.cpp b/kmymoney2/dialogs/kselectdatabasedlg.cpp
index 85b407a..9bb1e33 100644
--- a/kmymoney2/dialogs/kselectdatabasedlg.cpp
+++ b/kmymoney2/dialogs/kselectdatabasedlg.cpp
@@ -182,10 +182,10 @@ void KSelectDatabaseDlg::slotDriverSelected (TQListBoxItem *driver) {
if (dbType == Sqlite3){
TQString dbName = TQFileDialog::getOpenFileName(
"",
- i18n("STQLite files (*.sql);; All files (*.*)"),
+ i18n("SQLite files (*.sql);; All files (*.*)"),
this,
"",
- i18n("Select STQLite file"));
+ i18n("Select SQLite file"));
if (dbName.isNull()) {
listDrivers->setSelected(driver, false);
return;