summaryrefslogtreecommitdiffstats
path: root/src/qalculatebuttonwithdata.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-07 19:48:13 +0900
commit0075327cfd432d756fff5de46626067a3856948e (patch)
tree7fbc9804960dc6ef1aa99054967459f4d9a5f464 /src/qalculatebuttonwithdata.cpp
parent8373cb43a7a73d1348c583c39d63c9e3aa0a4a42 (diff)
downloadqalculate-tde-0075327cfd432d756fff5de46626067a3856948e.tar.gz
qalculate-tde-0075327cfd432d756fff5de46626067a3856948e.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/qalculatebuttonwithdata.cpp')
-rw-r--r--src/qalculatebuttonwithdata.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qalculatebuttonwithdata.cpp b/src/qalculatebuttonwithdata.cpp
index 679aeee..0b1e8b6 100644
--- a/src/qalculatebuttonwithdata.cpp
+++ b/src/qalculatebuttonwithdata.cpp
@@ -21,11 +21,11 @@
QalculateButtonWithData::QalculateButtonWithData(void *data, const TQString & text, TQWidget *parent, const char *name) : TQPushButton(text, parent, name) {
user_data = data;
- TQObject::connect(this, SIGNAL(clicked()), this, SLOT(emitClickedWithData()));
+ TQObject::connect(this, TQ_SIGNAL(clicked()), this, TQ_SLOT(emitClickedWithData()));
}
QalculateButtonWithData::QalculateButtonWithData(void *data, const TQIconSet & icon, const TQString & text, TQWidget * parent, const char * name) : TQPushButton(icon, text, parent, name) {
user_data = data;
- TQObject::connect(this, SIGNAL(clicked()), this, SLOT(emitClickedWithData()));
+ TQObject::connect(this, TQ_SIGNAL(clicked()), this, TQ_SLOT(emitClickedWithData()));
}
QalculateButtonWithData::~QalculateButtonWithData() {}
void QalculateButtonWithData::emitClickedWithData() {