summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/examples/buttongroups
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-13 11:29:06 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-13 11:45:40 +0900
commitfaf33629bb6562a6f43f930afafe4b22e9cdb60b (patch)
tree8fc6dc6d999a3a039ace28db2fe5b96712fa18e0 /qtjava/javalib/examples/buttongroups
parent0ff7d227c65fecb4fb7482ecd679acb594ef5cf7 (diff)
downloadtdebindings-faf33629bb6562a6f43f930afafe4b22e9cdb60b.tar.gz
tdebindings-faf33629bb6562a6f43f930afafe4b22e9cdb60b.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'qtjava/javalib/examples/buttongroups')
-rw-r--r--qtjava/javalib/examples/buttongroups/ButtonsGroups.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/qtjava/javalib/examples/buttongroups/ButtonsGroups.java b/qtjava/javalib/examples/buttongroups/ButtonsGroups.java
index 89b1bcb9..466ccd29 100644
--- a/qtjava/javalib/examples/buttongroups/ButtonsGroups.java
+++ b/qtjava/javalib/examples/buttongroups/ButtonsGroups.java
@@ -80,8 +80,8 @@ public ButtonsGroups( TQWidget parent, String name )
// insert a checkbox...
state = new TQCheckBox( "E&nable Radiobuttons", bgrp3 );
state.setChecked( true );
- // ...and connect its SIGNAL clicked() with the SLOT slotChangeGrp3State()
- connect( state, SIGNAL(" clicked()"), this, SLOT(" slotChangeGrp3State()") );
+ // ...and connect its signal clicked() with the slot slotChangeGrp3State()
+ connect( state, TQ_SIGNAL(" clicked()"), this, TQ_SLOT(" slotChangeGrp3State()") );
// ------------ fourth group
@@ -103,7 +103,7 @@ public ButtonsGroups( TQWidget parent, String name )
}
/*
- SLOT slotChangeGrp3State()
+ TQ_SLOT slotChangeGrp3State()
*
enables/disables the radiobuttons of the third buttongroup
*/