diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-02 11:38:18 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-15 10:13:01 +0900 |
| commit | 8c11a1403700fcc6b1ae25a2693be842fbf0d37e (patch) | |
| tree | f4425787a031de0ced74124ad92eb66339b0962a /src/combobutton.cpp | |
| parent | 9897ab3092180bda391ff33ab5135c75c5086979 (diff) | |
| download | soundkonverter-8c11a1403700fcc6b1ae25a2693be842fbf0d37e.tar.gz soundkonverter-8c11a1403700fcc6b1ae25a2693be842fbf0d37e.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 773c73d27492ada253b9e81752bd735ee3dc3ac1)
Diffstat (limited to 'src/combobutton.cpp')
| -rw-r--r-- | src/combobutton.cpp | 8 |
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; |
