summaryrefslogtreecommitdiffstats
path: root/kexi/widget/tableview/kexicomboboxpopup.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kexi/widget/tableview/kexicomboboxpopup.cpp')
-rw-r--r--kexi/widget/tableview/kexicomboboxpopup.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/kexi/widget/tableview/kexicomboboxpopup.cpp b/kexi/widget/tableview/kexicomboboxpopup.cpp
index 6877bd780..b0f6621c1 100644
--- a/kexi/widget/tableview/kexicomboboxpopup.cpp
+++ b/kexi/widget/tableview/kexicomboboxpopup.cpp
@@ -134,14 +134,14 @@ void KexiComboBoxPopup::init()
d->tv = new KexiComboBoxPopup_KexiTableView(this);
installEventFilter(this);
- connect(d->tv, TQT_SIGNAL(itemReturnPressed(KexiTableItem*,int,int)),
- this, TQT_SLOT(slotTVItemAccepted(KexiTableItem*,int,int)));
+ connect(d->tv, TQ_SIGNAL(itemReturnPressed(KexiTableItem*,int,int)),
+ this, TQ_SLOT(slotTVItemAccepted(KexiTableItem*,int,int)));
- connect(d->tv, TQT_SIGNAL(itemMouseReleased(KexiTableItem*,int,int)),
- this, TQT_SLOT(slotTVItemAccepted(KexiTableItem*,int,int)));
+ connect(d->tv, TQ_SIGNAL(itemMouseReleased(KexiTableItem*,int,int)),
+ this, TQ_SLOT(slotTVItemAccepted(KexiTableItem*,int,int)));
- connect(d->tv, TQT_SIGNAL(itemDblClicked(KexiTableItem*,int,int)),
- this, TQT_SLOT(slotTVItemAccepted(KexiTableItem*,int,int)));
+ connect(d->tv, TQ_SIGNAL(itemDblClicked(KexiTableItem*,int,int)),
+ this, TQ_SLOT(slotTVItemAccepted(KexiTableItem*,int,int)));
}
void KexiComboBoxPopup::setData(KexiTableViewColumn *column, KexiDB::Field *field)
@@ -258,7 +258,7 @@ void KexiComboBoxPopup::setData(KexiTableViewColumn *column, KexiDB::Field *fiel
d->tv->KexiDataAwareObjectInterface::data()->disconnect( this );
d->tv->setData( cursor );
- connect( d->tv, TQT_SIGNAL(dataRefreshed()), this, TQT_SLOT(slotDataReloadRequested()));
+ connect( d->tv, TQ_SIGNAL(dataRefreshed()), this, TQ_SLOT(slotDataReloadRequested()));
updateSize();
return;
}
@@ -287,7 +287,7 @@ void KexiComboBoxPopup::setDataInternal( KexiTableViewData *data, bool owner )
if (d->tv->KexiDataAwareObjectInterface::data())
d->tv->KexiDataAwareObjectInterface::data()->disconnect( this );
d->tv->setData( data, owner );
- connect( d->tv, TQT_SIGNAL(dataRefreshed()), this, TQT_SLOT(slotDataReloadRequested()));
+ connect( d->tv, TQ_SIGNAL(dataRefreshed()), this, TQ_SLOT(slotDataReloadRequested()));
updateSize();
}