summaryrefslogtreecommitdiffstats
path: root/src/combobutton.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-02 11:38:18 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-15 10:12:20 +0900
commit773c73d27492ada253b9e81752bd735ee3dc3ac1 (patch)
treedc8d0269d4e95c57b29be70c1c2b90545112ef56 /src/combobutton.cpp
parent07fbaa743408f4302df7b6889347a4a2deadc4de (diff)
downloadsoundkonverter-773c73d27492ada253b9e81752bd735ee3dc3ac1.tar.gz
soundkonverter-773c73d27492ada253b9e81752bd735ee3dc3ac1.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/combobutton.cpp')
-rw-r--r--src/combobutton.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/combobutton.cpp b/src/combobutton.cpp
index 851bc55..31cb23c 100644
--- a/src/combobutton.cpp
+++ b/src/combobutton.cpp
@@ -18,15 +18,15 @@ ComboButton::ComboButton( TQWidget *parent, const char *name )
m_box = new KComboBox(this);
grid->addWidget(m_box,0,0);
- connect( m_box, TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(boxActivated(int))
+ connect( m_box, TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(boxActivated(int))
);
m_button = new KPushButton( TQString(), this, "pushbutton" );
grid->addWidget( m_button, 0, 0 );
- connect( m_button, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(buttonClicked())
+ connect( m_button, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(buttonClicked())
);
m_sizeMode = Max;