summaryrefslogtreecommitdiffstats
path: root/src/borrowerdialog.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-01-04 10:31:17 +0900
committerMichele Calgaro <[email protected]>2024-01-04 10:31:17 +0900
commitc650254e1855d383dcafd15d18be20becc3b2253 (patch)
tree9c221c2e920b1f8e9098c6047d948833277659de /src/borrowerdialog.cpp
parent3d581777cdf9c0ff8dc7e757a2cd576f69e96b51 (diff)
downloadtellico-c650254e1855d383dcafd15d18be20becc3b2253.tar.gz
tellico-c650254e1855d383dcafd15d18be20becc3b2253.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/borrowerdialog.cpp')
-rw-r--r--src/borrowerdialog.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/borrowerdialog.cpp b/src/borrowerdialog.cpp
index fca07d2..b03b1dd 100644
--- a/src/borrowerdialog.cpp
+++ b/src/borrowerdialog.cpp
@@ -48,21 +48,21 @@ BorrowerDialog::BorrowerDialog(TQWidget* parent_, const char* name_/*=0*/)
topLayout->addWidget(m_listView);
m_listView->addColumn(i18n("Name"));
m_listView->setFullWidth(true);
- connect(m_listView, TQT_SIGNAL(doubleClicked(TQListViewItem*)), TQT_SLOT(slotOk()));
- connect(m_listView, TQT_SIGNAL(selectionChanged(TQListViewItem*)), TQT_SLOT(updateEdit(TQListViewItem*)));
+ connect(m_listView, TQ_SIGNAL(doubleClicked(TQListViewItem*)), TQ_SLOT(slotOk()));
+ connect(m_listView, TQ_SIGNAL(selectionChanged(TQListViewItem*)), TQ_SLOT(updateEdit(TQListViewItem*)));
m_lineEdit = new KLineEdit(mainWidget);
topLayout->addWidget(m_lineEdit);
- connect(m_lineEdit->completionObject(), TQT_SIGNAL(match(const TQString&)),
- TQT_SLOT(selectItem(const TQString&)));
+ connect(m_lineEdit->completionObject(), TQ_SIGNAL(match(const TQString&)),
+ TQ_SLOT(selectItem(const TQString&)));
m_lineEdit->setFocus();
m_lineEdit->completionObject()->setIgnoreCase(true);
TDEABC::AddressBook* abook = TDEABC::StdAddressBook::self(true);
- connect(abook, TQT_SIGNAL(addressBookChanged(AddressBook*)),
- TQT_SLOT(slotLoadAddressBook()));
- connect(abook, TQT_SIGNAL(loadingFinished(Resource*)),
- TQT_SLOT(slotLoadAddressBook()));
+ connect(abook, TQ_SIGNAL(addressBookChanged(AddressBook*)),
+ TQ_SLOT(slotLoadAddressBook()));
+ connect(abook, TQ_SIGNAL(loadingFinished(Resource*)),
+ TQ_SLOT(slotLoadAddressBook()));
slotLoadAddressBook();
setMinimumWidth(400);