summaryrefslogtreecommitdiffstats
path: root/src/kile/mathenvdialog.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-04 10:29:36 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-06 19:54:21 +0900
commit762d93a87a7a895f3b9300e8d8cac02400ff3d04 (patch)
treee5676bf1965dd51aad66b73f7170756009a174d1 /src/kile/mathenvdialog.cpp
parentb8b37954c0605203e69b0517e124d252abe95e15 (diff)
downloadkile-762d93a87a7a895f3b9300e8d8cac02400ff3d04.tar.gz
kile-762d93a87a7a895f3b9300e8d8cac02400ff3d04.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 35a77ad24c1557b88fc7792467183abf65b3f53c)
Diffstat (limited to 'src/kile/mathenvdialog.cpp')
-rw-r--r--src/kile/mathenvdialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kile/mathenvdialog.cpp b/src/kile/mathenvdialog.cpp
index 63102bc..19c6170 100644
--- a/src/kile/mathenvdialog.cpp
+++ b/src/kile/mathenvdialog.cpp
@@ -119,8 +119,8 @@ MathEnvironmentDialog::MathEnvironmentDialog(TQWidget *parent, TDEConfig *config
slotEnvironmentChanged( m_coEnvironment->currentItem() );
// signals and slots
- connect(m_coEnvironment, TQT_SIGNAL(activated(int)), this, TQT_SLOT(slotEnvironmentChanged(int)));
- connect(m_spCols, TQT_SIGNAL(valueChanged(int)), this, TQT_SLOT(slotSpinboxValueChanged(int)));
+ connect(m_coEnvironment, TQ_SIGNAL(activated(int)), this, TQ_SLOT(slotEnvironmentChanged(int)));
+ connect(m_spCols, TQ_SIGNAL(valueChanged(int)), this, TQ_SLOT(slotSpinboxValueChanged(int)));
TQWhatsThis::add(m_coEnvironment,i18n("Choose an environment."));
TQWhatsThis::add(m_cbStarred,i18n("Use the starred version of this environment."));