From 3a528d873ff72828fb9b19bed38a2b869b449089 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 4 Jan 2024 10:29:46 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro (cherry picked from commit e84ff3d61520e4200f987d3a0b6bea570b2e8b32) --- kmymoney2/dialogs/kupdatestockpricedlg.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'kmymoney2/dialogs/kupdatestockpricedlg.cpp') diff --git a/kmymoney2/dialogs/kupdatestockpricedlg.cpp b/kmymoney2/dialogs/kupdatestockpricedlg.cpp index 924105d..efd6800 100644 --- a/kmymoney2/dialogs/kupdatestockpricedlg.cpp +++ b/kmymoney2/dialogs/kupdatestockpricedlg.cpp @@ -54,11 +54,11 @@ void KUpdateStockPriceDlg::init() m_okButton->setGuiItem(KStdGuiItem::ok()); m_cancelButton->setGuiItem(KStdGuiItem::cancel()); - connect(m_okButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(accept())); - connect(m_cancelButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(reject())); + connect(m_okButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(accept())); + connect(m_cancelButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(reject())); - connect(m_security, TQT_SIGNAL(activated(int)), this, TQT_SLOT(slotCheckData())); - connect(m_currency, TQT_SIGNAL(activated(int)), this, TQT_SLOT(slotCheckData())); + connect(m_security, TQ_SIGNAL(activated(int)), this, TQ_SLOT(slotCheckData())); + connect(m_currency, TQ_SIGNAL(activated(int)), this, TQ_SLOT(slotCheckData())); // load initial values into the selection widgets m_currency->update(TQString()); -- cgit v1.2.1