diff options
author | Slávek Banko <[email protected]> | 2012-07-28 14:54:40 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2012-07-28 14:54:40 +0200 |
commit | 87f567cd9fd6ecf39a65f8c4564958e64df40e5f (patch) | |
tree | 8a4586d3f6d0b3f3a94cfa2dd4322e71ceaa2483 /kmymoney2/kmymoney2.cpp | |
parent | 8be22879a121ac2405c75e0c0878f857d8c53121 (diff) | |
download | kmymoney-87f567cd9fd6ecf39a65f8c4564958e64df40e5f.tar.gz kmymoney-87f567cd9fd6ecf39a65f8c4564958e64df40e5f.zip |
Fix inadvertent "TQ" changes.
Diffstat (limited to 'kmymoney2/kmymoney2.cpp')
-rw-r--r-- | kmymoney2/kmymoney2.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kmymoney2/kmymoney2.cpp b/kmymoney2/kmymoney2.cpp index b9edf6c..23927ca 100644 --- a/kmymoney2/kmymoney2.cpp +++ b/kmymoney2/kmymoney2.cpp @@ -316,13 +316,13 @@ void KMyMoney2App::initActions(void) new KAction(i18n("Open database..."), "",0,TQT_TQOBJECT(this), TQT_SLOT(slotOpenDatabase()),actionCollection(),"open_database"); new KAction(i18n("Save as database..."), "",0,TQT_TQOBJECT(this), TQT_SLOT(slotSaveAsDatabase()),actionCollection(),"saveas_database"); new KAction(i18n("Backup..."), "backup",0,TQT_TQOBJECT(this), TQT_SLOT(slotFileBackup()),actionCollection(),"file_backup"); - new KAction(i18n("TQIF..."), "", 0, TQT_TQOBJECT(this), TQT_SLOT(slotQifImport()), actionCollection(), "file_import_qif"); + new KAction(i18n("QIF..."), "", 0, TQT_TQOBJECT(this), TQT_SLOT(slotQifImport()), actionCollection(), "file_import_qif"); new KAction(i18n("Gnucash..."), "", 0, TQT_TQOBJECT(this), TQT_SLOT(slotGncImport()), actionCollection(), "file_import_gnc"); new KAction(i18n("Statement file..."), "", 0, TQT_TQOBJECT(this), TQT_SLOT(slotStatementImport()), actionCollection(), "file_import_statement"); new KAction(i18n("Account Template..."), "", 0, TQT_TQOBJECT(this), TQT_SLOT(slotLoadAccountTemplates()), actionCollection(), "file_import_template"); new KAction(i18n("Account Template..."), "", 0, TQT_TQOBJECT(this), TQT_SLOT(slotSaveAccountTemplates()), actionCollection(), "file_export_template"); - new KAction(i18n("TQIF..."), "", 0, TQT_TQOBJECT(this), TQT_SLOT(slotQifExport()), actionCollection(), "file_export_qif"); + new KAction(i18n("QIF..."), "", 0, TQT_TQOBJECT(this), TQT_SLOT(slotQifExport()), actionCollection(), "file_export_qif"); new KAction(i18n("Personal Data..."), "personal_data", 0, TQT_TQOBJECT(this), TQT_SLOT(slotFileViewPersonal()), actionCollection(), "view_personal_data"); #if KMM_DEBUG @@ -387,7 +387,7 @@ void KMyMoney2App::initActions(void) // ************** // The tools menu // ************** - new KAction(i18n("TQIF Profile Editor..."), "edit", 0, TQT_TQOBJECT(this), TQT_SLOT(slotQifProfileEditor()), actionCollection(), "tools_qif_editor"); + new KAction(i18n("QIF Profile Editor..."), "edit", 0, TQT_TQOBJECT(this), TQT_SLOT(slotQifProfileEditor()), actionCollection(), "tools_qif_editor"); new KAction(i18n("Securities..."), "", 0, TQT_TQOBJECT(this), TQT_SLOT(slotSecurityEditor()), actionCollection(), "tools_security_editor"); new KAction(i18n("Currencies..."), "", 0, TQT_TQOBJECT(this), TQT_SLOT(slotCurrencyDialog()), actionCollection(), "tools_currency_editor"); new KAction(i18n("Prices..."), "", 0, TQT_TQOBJECT(this), TQT_SLOT(slotPriceDialog()), actionCollection(), "tools_price_editor"); @@ -918,7 +918,7 @@ bool KMyMoney2App::isImportableFile( const KURL& url ) if ( MyMoneyStatement::isStatementFile( url.path() ) ) result = true; - // Place code here to test for TQIF and other locally-supported formats + // Place code here to test for QIF and other locally-supported formats // (i.e. not a plugin). If you add them here, be sure to add it to // the webConnect function. @@ -1559,7 +1559,7 @@ void KMyMoney2App::slotQifImportFinished(void) KMessageBox::informationList(this, i18n("The statements have been processed with the following results:"), d->m_statementResults, i18n("Statement stats")); #if 0 - // fixme: re-enable the TQIF import menu options + // fixme: re-enable the QIF import menu options if(m_qifReader->finishImport()) { if(verifyImportedData(m_qifReader->account())) { // keep the new data set, destroy the backup copy @@ -2104,7 +2104,7 @@ void KMyMoney2App::slotShowNextView(void) void KMyMoney2App::slotQifProfileEditor(void) { - MyMoneyQifProfileEditor* editor = new MyMoneyQifProfileEditor(true, this, "TQIF Profile Editor"); + MyMoneyQifProfileEditor* editor = new MyMoneyQifProfileEditor(true, this, "QIF Profile Editor"); editor->exec(); |