diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-04 10:30:32 +0900 | 
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-13 20:22:52 +0900 | 
| commit | e1b37ac1936f81994a2c1aa2778298fbc757531f (patch) | |
| tree | 2e2df5ea5786d581b10e51e0cbde9f4921697b2f /kexi/widget/kexidatasourcecombobox.cpp | |
| parent | d08f80f854355e446d1c6be0eb50166646f7f291 (diff) | |
| download | koffice-e1b37ac1936f81994a2c1aa2778298fbc757531f.tar.gz koffice-e1b37ac1936f81994a2c1aa2778298fbc757531f.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit c0332621bc998c9786f4841e86a62b7711fe4abf)
Diffstat (limited to 'kexi/widget/kexidatasourcecombobox.cpp')
| -rw-r--r-- | kexi/widget/kexidatasourcecombobox.cpp | 16 | 
1 files changed, 8 insertions, 8 deletions
| diff --git a/kexi/widget/kexidatasourcecombobox.cpp b/kexi/widget/kexidatasourcecombobox.cpp index 4299017d4..dab210a97 100644 --- a/kexi/widget/kexidatasourcecombobox.cpp +++ b/kexi/widget/kexidatasourcecombobox.cpp @@ -76,8 +76,8 @@ KexiDataSourceComboBox::KexiDataSourceComboBox(TQWidget *parent, const char *nam  	setInsertionPolicy(NoInsertion);  	setCompletionMode(TDEGlobalSettings::CompletionPopupAuto);  	setSizeLimit( 16 ); -	connect(this, TQT_SIGNAL(activated(int)), this, TQT_SLOT(slotActivated(int))); -	connect(this, TQT_SIGNAL(returnPressed(const TQString &)), this, TQT_SLOT(slotReturnPressed(const TQString &))); +	connect(this, TQ_SIGNAL(activated(int)), this, TQ_SLOT(slotActivated(int))); +	connect(this, TQ_SIGNAL(returnPressed(const TQString &)), this, TQ_SLOT(slotReturnPressed(const TQString &)));  	d->tableIcon = SmallIcon("table");  	d->queryIcon = SmallIcon("query"); @@ -110,12 +110,12 @@ void KexiDataSourceComboBox::setProject(KexiProject *prj, bool showTables, bool  		return;  	//needed for updating contents of the combo box -	connect(d->prj, TQT_SIGNAL(newItemStored(KexiPart::Item&)), -		this, TQT_SLOT(slotNewItemStored(KexiPart::Item&))); -	connect(d->prj, TQT_SIGNAL(itemRemoved(const KexiPart::Item&)), -		this, TQT_SLOT(slotItemRemoved(const KexiPart::Item&))); -	connect(d->prj, TQT_SIGNAL(itemRenamed(const KexiPart::Item&, const TQCString&)), -		this, TQT_SLOT(slotItemRenamed(const KexiPart::Item&, const TQCString&))); +	connect(d->prj, TQ_SIGNAL(newItemStored(KexiPart::Item&)), +		this, TQ_SLOT(slotNewItemStored(KexiPart::Item&))); +	connect(d->prj, TQ_SIGNAL(itemRemoved(const KexiPart::Item&)), +		this, TQ_SLOT(slotItemRemoved(const KexiPart::Item&))); +	connect(d->prj, TQ_SIGNAL(itemRenamed(const KexiPart::Item&, const TQCString&)), +		this, TQ_SLOT(slotItemRenamed(const KexiPart::Item&, const TQCString&)));  	KexiDB::Connection *conn = d->prj->dbConnection();  	if (!conn) | 
