summaryrefslogtreecommitdiffstats
path: root/kexi/widget/tableview/kexidataawareobjectiface.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kexi/widget/tableview/kexidataawareobjectiface.cpp')
-rw-r--r--kexi/widget/tableview/kexidataawareobjectiface.cpp40
1 files changed, 20 insertions, 20 deletions
diff --git a/kexi/widget/tableview/kexidataawareobjectiface.cpp b/kexi/widget/tableview/kexidataawareobjectiface.cpp
index 2ba852944..bcb510d20 100644
--- a/kexi/widget/tableview/kexidataawareobjectiface.cpp
+++ b/kexi/widget/tableview/kexidataawareobjectiface.cpp
@@ -158,29 +158,29 @@ void KexiDataAwareObjectInterface::setData( KexiTableViewData *data, bool owner
if (m_data && !theSameData) {
//! @todo: store sorting settings?
setSorting(-1);
-// connect(m_data, TQT_SIGNAL(refreshRequested()), this, TQT_SLOT(slotRefreshRequested()));
- connectToReloadDataSlot(m_data, TQT_SIGNAL(reloadRequested()));
+// connect(m_data, TQ_SIGNAL(refreshRequested()), this, TQ_SLOT(slotRefreshRequested()));
+ connectToReloadDataSlot(m_data, TQ_SIGNAL(reloadRequested()));
TQObject* thisObject = dynamic_cast<TQObject*>(this);
if (thisObject) {
- TQObject::connect(m_data, TQT_SIGNAL(destroying()), thisObject, TQT_SLOT(slotDataDestroying()));
- TQObject::connect(m_data, TQT_SIGNAL(rowsDeleted( const TQValueList<int> & )),
- thisObject, TQT_SLOT(slotRowsDeleted( const TQValueList<int> & )));
- TQObject::connect(m_data, TQT_SIGNAL(aboutToDeleteRow(KexiTableItem&,KexiDB::ResultInfo*,bool)),
- thisObject, TQT_SLOT(slotAboutToDeleteRow(KexiTableItem&,KexiDB::ResultInfo*,bool)));
- TQObject::connect(m_data, TQT_SIGNAL(rowDeleted()), thisObject, TQT_SLOT(slotRowDeleted()));
- TQObject::connect(m_data, TQT_SIGNAL(rowInserted(KexiTableItem*,bool)),
- thisObject, TQT_SLOT(slotRowInserted(KexiTableItem*,bool)));
- TQObject::connect(m_data, TQT_SIGNAL(rowInserted(KexiTableItem*,uint,bool)),
- thisObject, TQT_SLOT(slotRowInserted(KexiTableItem*,uint,bool))); //not db-aware
- TQObject::connect(m_data, TQT_SIGNAL(rowRepaintRequested(KexiTableItem&)),
- thisObject, TQT_SLOT(slotRowRepaintRequested(KexiTableItem&)));
+ TQObject::connect(m_data, TQ_SIGNAL(destroying()), thisObject, TQ_SLOT(slotDataDestroying()));
+ TQObject::connect(m_data, TQ_SIGNAL(rowsDeleted( const TQValueList<int> & )),
+ thisObject, TQ_SLOT(slotRowsDeleted( const TQValueList<int> & )));
+ TQObject::connect(m_data, TQ_SIGNAL(aboutToDeleteRow(KexiTableItem&,KexiDB::ResultInfo*,bool)),
+ thisObject, TQ_SLOT(slotAboutToDeleteRow(KexiTableItem&,KexiDB::ResultInfo*,bool)));
+ TQObject::connect(m_data, TQ_SIGNAL(rowDeleted()), thisObject, TQ_SLOT(slotRowDeleted()));
+ TQObject::connect(m_data, TQ_SIGNAL(rowInserted(KexiTableItem*,bool)),
+ thisObject, TQ_SLOT(slotRowInserted(KexiTableItem*,bool)));
+ TQObject::connect(m_data, TQ_SIGNAL(rowInserted(KexiTableItem*,uint,bool)),
+ thisObject, TQ_SLOT(slotRowInserted(KexiTableItem*,uint,bool))); //not db-aware
+ TQObject::connect(m_data, TQ_SIGNAL(rowRepaintRequested(KexiTableItem&)),
+ thisObject, TQ_SLOT(slotRowRepaintRequested(KexiTableItem&)));
// setup scrollbar's tooltip
- TQObject::connect(verticalScrollBar(),TQT_SIGNAL(sliderReleased()),
- thisObject,TQT_SLOT(vScrollBarSliderReleased()));
- TQObject::connect(verticalScrollBar(),TQT_SIGNAL(valueChanged(int)),
- thisObject,TQT_SLOT(vScrollBarValueChanged(int)));
- TQObject::connect(&m_scrollBarTipTimer,TQT_SIGNAL(timeout()),
- thisObject,TQT_SLOT(scrollBarTipTimeout()));
+ TQObject::connect(verticalScrollBar(),TQ_SIGNAL(sliderReleased()),
+ thisObject,TQ_SLOT(vScrollBarSliderReleased()));
+ TQObject::connect(verticalScrollBar(),TQ_SIGNAL(valueChanged(int)),
+ thisObject,TQ_SLOT(vScrollBarValueChanged(int)));
+ TQObject::connect(&m_scrollBarTipTimer,TQ_SIGNAL(timeout()),
+ thisObject,TQ_SLOT(scrollBarTipTimeout()));
}
}