diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-13 12:45:22 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-17 10:20:32 +0900 |
| commit | 39a4235db1ca9b470a13686c534c2f10cf6be1b1 (patch) | |
| tree | c57fbf371226a9b3e9748846b10a3455091dcc89 /tdemid/channel.cpp | |
| parent | 81c4cdd09da60e40f157a91bbe7828b82754e8e3 (diff) | |
| download | tdemultimedia-39a4235d.tar.gz tdemultimedia-39a4235d.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 286a061a4cd8a904a0b16b5be4c274a20935d5df)
Diffstat (limited to 'tdemid/channel.cpp')
| -rw-r--r-- | tdemid/channel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tdemid/channel.cpp b/tdemid/channel.cpp index 6b8e23cf..0b03ddc0 100644 --- a/tdemid/channel.cpp +++ b/tdemid/channel.cpp @@ -62,7 +62,7 @@ KMidChannel::KMidChannel(int chn,TQWidget *parent) : TQWidget (parent) for (i=0;i<128;i++) instrumentCombo->insertItem(i18n(instrumentName[i]),i); - connect(instrumentCombo,TQT_SIGNAL(activated(int)),this,TQT_SLOT(pgmChanged(int))); + connect(instrumentCombo,TQ_SIGNAL(activated(int)),this,TQ_SLOT(pgmChanged(int))); forcepgm=new KMidButton(this,"forcepgm"); forcepgm->setGeometry(135,4,16,16); @@ -71,7 +71,7 @@ KMidChannel::KMidChannel(int chn,TQWidget *parent) : TQWidget (parent) button2 = TQPixmap(locate("appdata","icons/button2.xpm")); forcepgm->setPixmaps(button1,button2); forcepgm->show(); - connect(forcepgm,TQT_SIGNAL(toggled(bool)),this,TQT_SLOT(changeForcedState(bool))); + connect(forcepgm,TQ_SIGNAL(toggled(bool)),this,TQ_SLOT(changeForcedState(bool))); } |
