From ecca365daf06c711cf30f93f4c773dabf5642790 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 27 Dec 2023 19:25:43 +0900 Subject: Rename METHOD, SIGNAL, SLOT to TQ_METHOD, TQ_SIGNAL, TQ_SLOT Signed-off-by: Michele Calgaro (cherry picked from commit fb401a891f1b426e9419c0cb16403df407138611) --- examples/sound/sound.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'examples/sound/sound.cpp') diff --git a/examples/sound/sound.cpp b/examples/sound/sound.cpp index f2808e902..fd508ca1c 100644 --- a/examples/sound/sound.cpp +++ b/examples/sound/sound.cpp @@ -42,15 +42,15 @@ SoundPlayer::SoundPlayer() : } TQPopupMenu *file = new TQPopupMenu; - file->insertItem("Play &1", this, SLOT(doPlay1()), CTRL+Key_1); - file->insertItem("Play &2", this, SLOT(doPlay2()), CTRL+Key_2); - file->insertItem("Play from bucket &3", this, SLOT(doPlay3()), CTRL+Key_3); - file->insertItem("Play from bucket &4", this, SLOT(doPlay4()), CTRL+Key_4); + file->insertItem("Play &1", this, TQ_SLOT(doPlay1()), CTRL+Key_1); + file->insertItem("Play &2", this, TQ_SLOT(doPlay2()), CTRL+Key_2); + file->insertItem("Play from bucket &3", this, TQ_SLOT(doPlay3()), CTRL+Key_3); + file->insertItem("Play from bucket &4", this, TQ_SLOT(doPlay4()), CTRL+Key_4); file->insertSeparator(); - file->insertItem("Play 3 and 4 together", this, SLOT(doPlay34())); - file->insertItem("Play all together", this, SLOT(doPlay1234())); + file->insertItem("Play 3 and 4 together", this, TQ_SLOT(doPlay34())); + file->insertItem("Play all together", this, TQ_SLOT(doPlay1234())); file->insertSeparator(); - file->insertItem("E&xit", tqApp, SLOT(quit())); + file->insertItem("E&xit", tqApp, TQ_SLOT(quit())); menuBar()->insertItem("&File", file); } -- cgit v1.2.3