summaryrefslogtreecommitdiffstats
path: root/src/buttonwithindexsignal.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-07 19:48:13 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-09 10:57:16 +0900
commit9fe1e65bf42ceb3d5bf818624b2674ba5e10c1ed (patch)
treed9b923a151fdb07620f8e056bfaf044c87a08667 /src/buttonwithindexsignal.cpp
parentd88c548dcfcafedab261a20eec043da0cf4e88e3 (diff)
downloadqalculate-tde-9fe1e65b.tar.gz
qalculate-tde-9fe1e65b.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 0075327cfd432d756fff5de46626067a3856948e)
Diffstat (limited to 'src/buttonwithindexsignal.cpp')
-rw-r--r--src/buttonwithindexsignal.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buttonwithindexsignal.cpp b/src/buttonwithindexsignal.cpp
index c2bbeef..79e6efa 100644
--- a/src/buttonwithindexsignal.cpp
+++ b/src/buttonwithindexsignal.cpp
@@ -21,7 +21,7 @@
ButtonWithIndexSignal::ButtonWithIndexSignal(const TQString & text, int index, TQWidget *parent, const char *name) : TQPushButton(text, parent, name) {
i = index;
- connect(this, SIGNAL(clicked()), this, SLOT(emitClickedWithIndex()));
+ connect(this, TQ_SIGNAL(clicked()), this, TQ_SLOT(emitClickedWithIndex()));
}
ButtonWithIndexSignal::~ButtonWithIndexSignal() {}
void ButtonWithIndexSignal::emitClickedWithIndex() {