diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-28 16:37:45 +0900 | 
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-28 16:37:45 +0900 | 
| commit | 11f3716a1c82b43f92dc32083101558f3ec47f27 (patch) | |
| tree | 0e0a6f82ea12db7ed50ba5e068128186493d44e1 /src/preferencesdlg.cpp | |
| parent | d399e3a2c6c365c540fe67bc648bacefe4cca707 (diff) | |
| download | kscope-11f3716a1c82b43f92dc32083101558f3ec47f27.tar.gz kscope-11f3716a1c82b43f92dc32083101558f3ec47f27.zip  | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/preferencesdlg.cpp')
| -rw-r--r-- | src/preferencesdlg.cpp | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/src/preferencesdlg.cpp b/src/preferencesdlg.cpp index 983c3c2..a0810f4 100644 --- a/src/preferencesdlg.cpp +++ b/src/preferencesdlg.cpp @@ -93,11 +93,11 @@ PreferencesDlg::PreferencesDlg(uint nPage, TQWidget* pParent,  	enableButtonApply(false);  	// Enable the "Apply" button when a parameter changes its value -	connect(m_pPrefFrontend, SIGNAL(modified()), this,  -		SLOT(slotModified())); -	connect(m_pPrefColor, SIGNAL(modified()), this, SLOT(slotModified())); -	connect(m_pPrefFont, SIGNAL(modified()), this, SLOT(slotModified())); -	connect(m_pPrefOpt, SIGNAL(modified()), this, SLOT(slotModified())); +	connect(m_pPrefFrontend, TQ_SIGNAL(modified()), this,  +		TQ_SLOT(slotModified())); +	connect(m_pPrefColor, TQ_SIGNAL(modified()), this, TQ_SLOT(slotModified())); +	connect(m_pPrefFont, TQ_SIGNAL(modified()), this, TQ_SLOT(slotModified())); +	connect(m_pPrefOpt, TQ_SIGNAL(modified()), this, TQ_SLOT(slotModified()));  	// Set the active page  	showPage(nPage);  | 
