diff options
author | Michele Calgaro <[email protected]> | 2023-11-05 11:54:03 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-05 21:02:02 +0900 |
commit | 96c67c9b3924ab034d3d34aa03d3ea7cf0746587 (patch) | |
tree | 7023c36a5f1592f5b11733ab574176f3970c0eb8 /kmymoney2/dialogs/kmymoneyfileinfodlg.cpp | |
parent | ecdc0343d446e810e477e8924e846de7f3313c55 (diff) | |
download | kmymoney-96c67c9b3924ab034d3d34aa03d3ea7cf0746587.tar.gz kmymoney-96c67c9b3924ab034d3d34aa03d3ea7cf0746587.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kmymoney2/dialogs/kmymoneyfileinfodlg.cpp')
-rw-r--r-- | kmymoney2/dialogs/kmymoneyfileinfodlg.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kmymoney2/dialogs/kmymoneyfileinfodlg.cpp b/kmymoney2/dialogs/kmymoneyfileinfodlg.cpp index da23184..89a4635 100644 --- a/kmymoney2/dialogs/kmymoneyfileinfodlg.cpp +++ b/kmymoney2/dialogs/kmymoneyfileinfodlg.cpp @@ -48,8 +48,8 @@ KMyMoneyFileInfoDlg::KMyMoneyFileInfoDlg(TQWidget *parent, const char *name ) // Now fill the fields with data IMyMoneyStorage* storage = MyMoneyFile::instance()->storage(); - m_creationDate->setText(storage->creationDate().toString(Qt::ISODate)); - m_lastModificationDate->setText(storage->lastModificationDate().toString(Qt::ISODate)); + m_creationDate->setText(storage->creationDate().toString(TQt::ISODate)); + m_lastModificationDate->setText(storage->lastModificationDate().toString(TQt::ISODate)); m_baseCurrency->setText(storage->value("kmm-baseCurrency")); m_payeeCount->setText(TQString("%1").arg(storage->payeeList().count())); |